Package nzilbb.util
Class CircularDependencyException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- nzilbb.util.CircularDependencyException
-
- All Implemented Interfaces:
Serializable
public class CircularDependencyException extends Exception
Exception thrown when DependencyGraph detects a circular dependency.- Author:
- Robert Fromont robert@fromont.net.nz
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CircularDependencyException(DependencyNode node)
Default constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DependencyNode
getNode()
Getter fornode
: The node with the circular dependency.String
toString()
String representation of the object.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
Constructor Detail
-
CircularDependencyException
public CircularDependencyException(DependencyNode node)
Default constructor.
-
-
Method Detail
-
getNode
public DependencyNode getNode()
Getter fornode
: The node with the circular dependency.- Returns:
- The node with the circular dependency.
-
-