home *** CD-ROM | disk | FTP | other *** search
- // VRML Prototyping Exercise - BattleWorld
- // NoBrowserException.java
- //
- // Justin Couch 1 Nov 96
- // The exception handler class for when there is no currently selected node in
- // the editor and we try to perform an action.
-
- package exceptions;
-
- import java.lang.Exception;
- import java.lang.String;
-
- public class NoSelectedNodeException extends Exception
- {
- // the empty constructor
- public NoSelectedNodeException()
- {
- }
-
- // sends it a string of the error
- public NoSelectedNodeException(String s)
- {
- super(s);
- }
- }