FileDocCategorySizeDatePackage
XPathProcessorException.javaAPI DocJava SE 6 API1563Tue Jun 10 00:23:12 BST 2008com.sun.org.apache.xpath.internal

XPathProcessorException

public class XPathProcessorException extends XPathException
Derived from XPathException in order that XPath processor exceptions may be specifically caught.
xsl.usage
general

Fields Summary
static final long
serialVersionUID
Constructors Summary
public XPathProcessorException(String message)
Create an XPathProcessorException object that holds an error message.

param
message The error message.


                   
    
  
    super(message);
  
public XPathProcessorException(String message, Exception e)
Create an XPathProcessorException object that holds an error message, and another exception that caused this exception.

param
message The error message.
param
e The exception that caused this exception.

    super(message, e);
  
Methods Summary