Package org.jaxen
Class JaxenException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.jaxen.saxpath.SAXPathException
org.jaxen.JaxenException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
FunctionCallException
,UnresolvableException
,UnsupportedAxisException
,XPathSyntaxException
Generic Jaxen exception.
This is the root of all Jaxen exceptions. It may wrap other exceptions.
- Author:
- bob mcwhirter
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionJaxenException
(String message) Create an exception with a detail message.JaxenException
(String message, Throwable nestedException) Create a new JaxenException with the specified detail message and root cause.JaxenException
(Throwable rootCause) Create an exception caused by another exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
JaxenException
Create an exception with a detail message.- Parameters:
message
- the error message
-
JaxenException
Create an exception caused by another exception.- Parameters:
rootCause
- the root cause of this exception
-
JaxenException
Create a new JaxenException with the specified detail message and root cause.- Parameters:
message
- the detail messagenestedException
- the cause of this exception
-