home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-10-25 | 849 b | 31 lines |
- /*
- * Copyright 1998 Symantec Corporation, All Rights Reserved.
- */
-
- package com.symantec.itools.vcafe.openapi;
-
- /**
- * Indicates a method was called on an invalid <code>VisualObject</code>.
- * This can happen if the Visual Cafe environment has disposed of the <code>VisualObject</code>, and
- * the plug-in java code ignores the <code>VisualObjectListener</code> notification and still maintains a
- * reference to the <code>VisualObject</code>, for example.
- * @see VisualObject
- * @see VisualObjectListener
- * @see VisualObject#checkValidity
- *
- * @author Symantec Internet Tools Division
- * @version 1.0
- * @since VCafe 3.0
- */
-
- public class InvalidVisualObjectException extends RuntimeException
- {
- /**
- * Constructs a new InvalidVisualObjectException.
- */
- public InvalidVisualObjectException()
- {
- super();
- }
- }
-