home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / VCAFE.3.0A / Main.bin / InvalidVisualObjectException.java < prev    next >
Text File  |  1998-10-25  |  849b  |  31 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>VisualObject</code>.
  9.  * This can happen if the Visual Cafe environment has disposed of the <code>VisualObject</code>, and
  10.  * the plug-in java code ignores the <code>VisualObjectListener</code> notification and still maintains a
  11.  * reference to the <code>VisualObject</code>, for example.
  12.  * @see VisualObject
  13.  * @see VisualObjectListener
  14.  * @see    VisualObject#checkValidity
  15.  *
  16.  * @author Symantec Internet Tools Division
  17.  * @version 1.0
  18.  * @since VCafe 3.0
  19.  */
  20.  
  21. public class InvalidVisualObjectException extends RuntimeException
  22. {
  23.     /**
  24.      * Constructs a new InvalidVisualObjectException.
  25.      */
  26.     public InvalidVisualObjectException()
  27.     {
  28.         super();
  29.     }
  30. }
  31.