org.jaxen
Class JaxenException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.jaxen.saxpath.SAXPathException
org.jaxen.JaxenException
- All Implemented Interfaces:
- java.io.Serializable
- Direct Known Subclasses:
- FunctionCallException, UnresolvableException, UnsupportedAxisException, XPathSyntaxException
public class JaxenException
- extends SAXPathException
Generic Jaxen exception.
This is the root of all Jaxen exceptions. It may wrap other exceptions.
- Author:
- bob mcwhirter
- See Also:
- Serialized Form
Constructor Summary |
JaxenException(java.lang.String message)
Create an exception with a detail message. |
JaxenException(java.lang.String message,
java.lang.Throwable nestedException)
Create a new JaxenException with the specified detail message
and root cause. |
JaxenException(java.lang.Throwable rootCause)
Create an exception caused by another exception. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
javaVersion
static double javaVersion
JaxenException
public JaxenException(java.lang.String message)
- Create an exception with a detail message.
- Parameters:
message
- the error message
JaxenException
public JaxenException(java.lang.Throwable rootCause)
- Create an exception caused by another exception.
- Parameters:
rootCause
- the root cause of this exception
JaxenException
public JaxenException(java.lang.String message,
java.lang.Throwable nestedException)
- Create a new JaxenException with the specified detail message
and root cause.
- Parameters:
message
- the detail messagenestedException
- the cause of this exception