home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / VCAFE.3.0A / Main.bin / InvalidVisualPropertyException.java < prev    next >
Text File  |  1998-10-25  |  949b  |  33 lines

  1. /*
  2.  * Copyright 1998 Symantec Corporation, All Rights Reserved.
  3.  */
  4.  
  5. package com.symantec.itools.vcafe.openapi;
  6.  
  7. /**
  8.  * Indicates a method was called on an invalid <code>VisualProperty</code>.
  9.  * This can happen if the Visual Cafe environment has disposed of the <code>VisualProperty</code>'s <code>VisualObject</code>, and
  10.  * the plug-in java code ignores the <code>VisualObjectListener</code> notification and still maintains a reference 
  11.  * to the <code>VisualObject</code> or <code>VisualProperty</code>, for example.
  12.  *
  13.  * @see VisualProperty
  14.  * @see    VisualProperty#checkValidity
  15.  * @see VisualObject
  16.  * @see VisualObjectListener
  17.  *
  18.  * @author Symantec Internet Tools Division
  19.  * @version 1.0
  20.  * @since VCafe 3.0
  21.  */
  22.  
  23. public class InvalidVisualPropertyException extends RuntimeException
  24. {
  25.     /**
  26.      * Constructs a new InvalidVisualPropertyException.
  27.      */
  28.     public InvalidVisualPropertyException()
  29.     {
  30.         super();
  31.     }
  32. }
  33.