org.jaxen
Class JaxenException
public class JaxenException
Generic Jaxen exception.
This is the root of all Jaxen exceptions. It may wrap other exceptions.
JaxenException(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.
|
javaVersion
(package private) static double javaVersion
serialVersionUID
private static final long serialVersionUID
JaxenException
public JaxenException(String message)
Create an exception with a detail message.
message
- the error message
JaxenException
public JaxenException(String message,
Throwable nestedException)
Create a new JaxenException with the specified detail message
and root cause.
message
- the detail messagenestedException
- the cause of this exception
JaxenException
public JaxenException(Throwable rootCause)
Create an exception caused by another exception.
rootCause
- the root cause of this exception