Package org.web3d.vrml.lang
Class UnsupportedNodeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.web3d.vrml.lang.VRMLException
org.web3d.vrml.lang.UnsupportedNodeException
- All Implemented Interfaces:
Serializable
Exception indicating that a node is not supported by the profiles and
components selected for the file/stream.
A message is automatically generated for this node, so the caller only needs to provide a string representing the name of the node. You'll need to be careful about this because the constructor signature is just like all the others that take a single string, which is normally just the complete message. For example, use the exception like this:
throw new UnsupportedNodeException("Inline");
- Version:
- $Revision: 1.5 $
- Author:
- Justin Couch
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreate a new exception for the node of the given name. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
UnsupportedNodeException
Create a new exception for the node of the given name.- Parameters:
name
- The name of the node type that caused the error
-