Package org.eigenbase.xom
Class XOMException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.eigenbase.xom.XOMException
- All Implemented Interfaces:
Serializable
XOMException extends Exception and provides detailed error messages for
xom-specific exceptions.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a XOM exception with no message.Constructs an exception with a detailed message.XOMException
(Throwable cause, String s) Constructs an exception based on another exception, so that the exceptions may be chained. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
XOMException
public XOMException()Constructs a XOM exception with no message. -
XOMException
Constructs an exception with a detailed message.- Parameters:
s
- - a detailed message describing the specific error
-
XOMException
Constructs an exception based on another exception, so that the exceptions may be chained.- Parameters:
cause
- the exception on which this one is based.s
- a message for this portion of the exception.
-