Package org.jaxen.saxpath
Class SAXPathException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.jaxen.saxpath.SAXPathException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
JaxenException
,XPathSyntaxException
public class SAXPathException extends java.lang.Exception
Base of all SAXPath exceptions.- Author:
- bob mcwhirter (bob@werken.com)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SAXPathException(java.lang.String message)
Create a new SAXPathException with a given message.SAXPathException(java.lang.String message, java.lang.Throwable cause)
Create a new SAXPathException with the specified detail message and root cause.SAXPathException(java.lang.Throwable cause)
Create a new SAXPathException based on another exception
-
-
-
Constructor Detail
-
SAXPathException
public SAXPathException(java.lang.String message)
Create a new SAXPathException with a given message.- Parameters:
message
- the error message
-
SAXPathException
public SAXPathException(java.lang.Throwable cause)
Create a new SAXPathException based on another exception- Parameters:
cause
- the error source
-
SAXPathException
public SAXPathException(java.lang.String message, java.lang.Throwable cause)
Create a new SAXPathException with the specified detail message and root cause.- Parameters:
message
- the detail messagecause
- the cause of this exception
-
-