FileDocCategorySizeDatePackage
XPathExpressionException.javaAPI DocJava SE 5 API1704Fri Aug 26 14:58:24 BST 2005javax.xml.xpath

XPathExpressionException

public class XPathExpressionException extends XPathException
XPathExpressionException represents an error in an XPath expression.

author
Norman Walsh
author
Jeff Suttor
version
$Revision: 1.3.12.1 $, $Date: 2004/06/15 00:05:01 $
since
1.5

Fields Summary
private static final long
serialVersionUID

Stream Unique Identifier.

Constructors Summary
public XPathExpressionException(String message)

Constructs a new XPathExpressionException with the specified detail message.

The cause is not initialized.

If message is null, then a NullPointerException is thrown.

param
message The detail message.


                                     
       
        super(message);
    
public XPathExpressionException(Throwable cause)

Constructs a new XPathExpressionException with the specified cause.

If cause is null, then a NullPointerException is thrown.

param
cause The cause.
throws
NullPointerException if cause is null.

        super(cause);
    
Methods Summary