Package vrml.eai
Class VrmlException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
vrml.eai.VrmlException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ConnectionException
,InvalidBrowserException
,InvalidFieldException
,InvalidNodeException
,InvalidURLException
,InvalidVrmlException
,NoSuchBrowserException
,NotSupportedException
,URLUnavailableException
The basic exception that is thrown by any VRML method call that wishes to
throw events. Based on RuntimeException so that the user has the choice of
deciding whether to catch the exception or not.
- Version:
- 1.0 30 April 1998
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstruct a basic instance of this exception with no error messageVrmlException
(String msg) Constructs a new exception with a particular message -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
VrmlException
public VrmlException()Construct a basic instance of this exception with no error message -
VrmlException
Constructs a new exception with a particular message- Parameters:
msg
- The message to use
-