org.jaxen.saxpath
public class SAXPathException extends Exception
Field Summary | |
---|---|
Throwable | cause |
boolean | causeSet |
static double | javaVersion |
static long | serialVersionUID |
Constructor Summary | |
---|---|
SAXPathException(String message) Create a new SAXPathException with a given message.
| |
SAXPathException(Throwable cause) Create a new SAXPathException based on another exception
| |
SAXPathException(String message, Throwable cause)
Create a new SAXPathException with the specified detail message
and root cause.
|
Method Summary | |
---|---|
Throwable | getCause()
Returns the exception that caused this exception.
|
Throwable | initCause(Throwable cause)
Sets the exception that caused this exception.
|
void | printStackTrace(PrintStream s) Print this exception's stack trace, followed by the
source exception's trace, if any.
|
void | printStackTrace(PrintWriter s) Print this exception's stack trace, followed by the
source exception's stack trace, if any.
|
Parameters: message the error message
Parameters: cause the error source
Parameters: message the detail message cause the cause of this exception
Returns: the exception that caused this exception
Parameters: cause the exception wrapped in this runtime exception
Returns: this exception
Parameters: s the stream on which to print the stack trace
Parameters: s the writer on which to print the stack trace