Package nu.xom
Class CycleException
- All Implemented Interfaces:
Serializable
Indicates an attempt to insert an ancestor element as one of its own descendants.
- Version:
- 1.1b3
- Author:
- Elliotte Rusty Harold
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCycleException
(String message) Creates a newCycleException
with a detail message.CycleException
(String message, Throwable cause) Creates a newCycleException
with a detail message and an underlying root cause. -
Method Summary
Methods inherited from class nu.xom.XMLException
getCause, initCause
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CycleException
Creates a new
CycleException
with a detail message.- Parameters:
message
- a string indicating the specific problem
-
CycleException
Creates a new
CycleException
with a detail message and an underlying root cause.- Parameters:
message
- a string indicating the specific problemcause
- the original cause of this exception
-