Package nu.xom
Class CycleException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- nu.xom.XMLException
-
- nu.xom.WellformednessException
-
- nu.xom.IllegalAddException
-
- nu.xom.CycleException
-
- All Implemented Interfaces:
java.io.Serializable
public class CycleException extends IllegalAddException
Indicates an attempt to insert an ancestor element as one of its own descendants.
- Version:
- 1.1b3
- Author:
- Elliotte Rusty Harold
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CycleException(java.lang.String message)
Creates a newCycleException
with a detail message.CycleException(java.lang.String message, java.lang.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
-
-
-
-
Constructor Detail
-
CycleException
public CycleException(java.lang.String message)
Creates a new
CycleException
with a detail message.- Parameters:
message
- a string indicating the specific problem
-
CycleException
public CycleException(java.lang.String message, java.lang.Throwable cause)
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
-
-