home *** CD-ROM | disk | FTP | other *** search
/ Late Night VRML 2.0 with Java CD-ROM / code.zip / Ch12 / exceptions / NoSelectedNodeException.java < prev   
Text File  |  1996-12-30  |  520b  |  25 lines

  1. // VRML Prototyping Exercise - BattleWorld
  2. // NoBrowserException.java
  3. //
  4. // Justin Couch 1 Nov 96
  5. // The exception handler class for when there is no currently selected node in
  6. // the editor and we try to perform an action.
  7.  
  8. package exceptions;
  9.  
  10. import java.lang.Exception;
  11. import java.lang.String;
  12.  
  13. public class NoSelectedNodeException extends Exception
  14. {
  15.     // the empty constructor
  16.     public NoSelectedNodeException()
  17.     {
  18.     }
  19.  
  20.     // sends it a string of the error
  21.     public NoSelectedNodeException(String s)
  22.     {
  23.         super(s);
  24.     }
  25. }