FileDocCategorySizeDatePackage
XPathException.javaAPI DocApache Xerces 3.0.11760Fri Sep 14 20:33:54 BST 2007org.apache.xerces.impl.xpath

XPathException

public class XPathException extends Exception
XPath exception.
xerces.internal
author
Andy Clark, IBM
version
$Id: XPathException.java 572107 2007-09-02 18:40:40Z mrglavas $

Fields Summary
static final long
serialVersionUID
Serialization version.
private final String
fKey
Constructors Summary
public XPathException()
Constructs an exception.

    //
    // Constructors
    //

        
      
        super();
        fKey = "c-general-xpath";
    
public XPathException(String key)
Constructs an exception with the specified key.

        super();
        fKey = key;
    
Methods Summary
public java.lang.StringgetKey()

        return fKey;