org.xmlpull.v1.builder.xpath.jaxen
Class JaxenException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.xmlpull.v1.builder.XmlBuilderException
                  extended by org.xmlpull.v1.builder.xpath.saxpath.SAXPathException
                      extended by org.xmlpull.v1.builder.xpath.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. See getRootCause().

See Also:
Serialized Form

Field Summary
 
Fields inherited from class org.xmlpull.v1.builder.XmlBuilderException
detail
 
Constructor Summary
JaxenException(java.lang.String message)
          Construct with a message.
JaxenException(java.lang.Throwable rootCause)
          Construct with a root cause.
 
Method Summary
 java.lang.Throwable getRootCause()
          Retrieve the root cause, if any.
 
Methods inherited from class org.xmlpull.v1.builder.XmlBuilderException
getDetail, getMessage, printStackTrace, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

JaxenException

public JaxenException(java.lang.String message)
Construct with a message.

Parameters:
message - The error message.

JaxenException

public JaxenException(java.lang.Throwable rootCause)
Construct with a root cause.

Parameters:
rootCause - Root cause of the error.
Method Detail

getRootCause

public java.lang.Throwable getRootCause()
Retrieve the root cause, if any.

Returns:
Root cause of the error.