FileDocCategorySizeDatePackage
XPathFunctionException.javaAPI DocJava SE 6 API2494Tue Jun 10 00:27:16 BST 2008javax.xml.xpath

XPathFunctionException

public class XPathFunctionException extends XPathExpressionException
XPathFunctionException represents an error with an XPath function.

author
Norman Walsh
author
Jeff Suttor
version
$Revision: 1.2 $, $Date: 2005/06/10 03:50:45 $
since
1.5

Fields Summary
private static final long
serialVersionUID

Stream Unique Identifier.

Constructors Summary
public XPathFunctionException(String message)

Constructs a new XPathFunctionException with the specified detail message.

The cause is not initialized.

If message is null, then a NullPointerException is thrown.

param
message The detail message.
throws
NullPointerException When message is null.


                                             
       
        super(message);
    
public XPathFunctionException(Throwable cause)

Constructs a new XPathFunctionException 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