org.jaxen
public class JaxenRuntimeException extends RuntimeException
| Field Summary | |
|---|---|
| Throwable | cause |
| boolean | causeSet |
| static long | serialVersionUID |
| Constructor Summary | |
|---|---|
| JaxenRuntimeException(Throwable cause)
Create a new JaxenRuntimeException.
| |
| JaxenRuntimeException(String message)
Create a new JaxenRuntimeException.
| |
| 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: cause the nested exception that's wrapped inside this exception
Parameters: message the detail message
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