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

XPathFactoryConfigurationException

public class XPathFactoryConfigurationException extends XPathException
XPathFactoryConfigurationException represents a configuration error in a XPathFactory environment.

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

Fields Summary
private static final long
serialVersionUID

Stream Unique Identifier.

Constructors Summary
public XPathFactoryConfigurationException(String message)

Constructs a new XPathFactoryConfigurationException 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 XPathFactoryConfigurationException(Throwable cause)

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