home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Late Night VRML 2.0 with Java CD-ROM
/
code.zip
/
Ch12
/
exceptions
/
NoSelectedNodeException.java
< prev
Wrap
Text File
|
1996-12-30
|
520b
|
25 lines
// 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);
}
}