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