Package org.apache.xpath
Class XPathProcessorException
java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.xml.transform.TransformerException
org.apache.xpath.XPathException
org.apache.xpath.XPathProcessorException
- All Implemented Interfaces:
Serializable
public class XPathProcessorException extends XPathException
Derived from XPathException in order that XPath processor
exceptions may be specifically caught.
- See Also:
- Serialized Form
-
Field Summary
Fields inherited from class org.apache.xpath.XPathException
m_exception -
Constructor Summary
Constructors Constructor Description XPathProcessorException(String message)Create an XPathProcessorException object that holds an error message.XPathProcessorException(String message, Exception e)Create an XPathProcessorException object that holds an error message, and another exception that caused this exception. -
Method Summary
Methods inherited from class org.apache.xpath.XPathException
getException, getExpressionOwner, getMessage, getStylesheetNode, getStylesheetNode, printStackTrace, printStackTrace, setStylesheetNodeMethods inherited from class javax.xml.transform.TransformerException
getCause, getLocationAsString, getLocator, getMessageAndLocation, initCause, printStackTrace, setLocatorMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getStackTrace, getSuppressed, setStackTrace, toString
-
Constructor Details
-
XPathProcessorException
Create an XPathProcessorException object that holds an error message.- Parameters:
message- The error message.
-
XPathProcessorException
Create an XPathProcessorException object that holds an error message, and another exception that caused this exception.- Parameters:
message- The error message.e- The exception that caused this exception.
-