All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.media.j3d.SceneGraphCycleException

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----java.lang.RuntimeException
                           |
                           +----java.media.j3d.SceneGraphCycleException

public class SceneGraphCycleException
extends RuntimeException
Indicates that one of the live scene graphs attached to a viewable Locale has a cycle in it. Java 3D scene graphs are directed acyclic graphs and, as such, do not permit cycles. This exception is either thrown by the Java 3D renderer at scene graph traversal time or when a scene graph containing a cycle is made live (added as a descendant of a Locale object).


Constructor Index

 o SceneGraphCycleException()
Create the exception object with default values..
 o SceneGraphCycleException(String)
Create the exception object that outputs message.

Constructors

 o SceneGraphCycleException
 public SceneGraphCycleException()
Create the exception object with default values..

 o SceneGraphCycleException
 public SceneGraphCycleException(String str)
Create the exception object that outputs message.

Parameters:
str - the message string to be output.

All Packages  Class Hierarchy  This Package  Previous  Next  Index