Package javax.media.j3d
Class SceneGraphCycleException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
javax.media.j3d.IllegalSceneGraphException
javax.media.j3d.SceneGraphCycleException
- All Implemented Interfaces:
Serializable
Indicates a graph that contains a cycle.
Java 3D scene graphs are directed acyclic graphs and, as such, do not
permit cycles.
This exception is thrown when a graph containing a cycle:
- is made live
- is compiled
- is cloned
- has getBounds() called on it.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreate the exception object with default values.Create the exception object that outputs 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
-
SceneGraphCycleException
public SceneGraphCycleException()Create the exception object with default values. -
SceneGraphCycleException
Create the exception object that outputs message.- Parameters:
str
- the message string to be output.
-