Package org.jaxen.saxpath
Class SAXPathException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.jaxen.saxpath.SAXPathException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
JaxenException
,XPathSyntaxException
Base of all SAXPath exceptions.
- Author:
- bob mcwhirter (bob@werken.com)
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSAXPathException
(String message) Create a new SAXPathException with a given message.SAXPathException
(String message, Throwable cause) Create a new SAXPathException with the specified detail message and root cause.SAXPathException
(Throwable cause) Create a new SAXPathException based on 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
-
SAXPathException
Create a new SAXPathException with a given message.- Parameters:
message
- the error message
-
SAXPathException
Create a new SAXPathException based on another exception- Parameters:
cause
- the error source
-
SAXPathException
Create a new SAXPathException with the specified detail message and root cause.- Parameters:
message
- the detail messagecause
- the cause of this exception
-