Package org.jaxen
Class UnsupportedAxisException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.jaxen.saxpath.SAXPathException
org.jaxen.JaxenException
org.jaxen.UnsupportedAxisException
- All Implemented Interfaces:
Serializable
Indicates attempt to evaluate an XPath axis that
is unsupported by the current object-model. If this is thrown
the XPath expressions cannot be evaluated correctly, unless there is a fallback
evaluation path. Hence you should not just catch this
and ignore it, nor should navigators throw it to indicate that
an axis is exhausted: instead return an empty iterator.
- Author:
- bob mcwhirter
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionUnsupportedAxisException
(String message) Create a new UnsupportedAxisException. -
Method Summary
Methods inherited from class org.jaxen.saxpath.SAXPathException
getCause, initCause, printStackTrace, printStackTrace
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, printStackTrace, setStackTrace, toString
-
Constructor Details
-
UnsupportedAxisException
Create a new UnsupportedAxisException.- Parameters:
message
- the error message
-