org.apache.xpath
Class XPathProcessorException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjavax.xml.transform.TransformerException
              extended byorg.apache.xpath.XPathException
                  extended byorg.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, m_styleNode
 
Fields inherited from class javax.xml.transform.TransformerException
 
Fields inherited from class java.lang.Exception
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
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.
 
Methods inherited from class org.apache.xpath.XPathException
getException, getExpressionOwner, getMessage, getStylesheetNode, getStylesheetNode, printStackTrace, printStackTrace, setStylesheetNode
 
Methods inherited from class javax.xml.transform.TransformerException
getCause, getLocationAsString, getLocator, getMessageAndLocation, initCause, printStackTrace, setLocator
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

XPathProcessorException

public XPathProcessorException(String message)
Create an XPathProcessorException object that holds an error message.

Parameters:
message - The error message.

XPathProcessorException

public XPathProcessorException(String message,
                               Exception e)
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.