FileDocCategorySizeDatePackage
XPathException.javaAPI DocJava SE 5 API3482Fri Aug 26 14:55:48 BST 2005com.sun.org.apache.xerces.internal.impl.xpath

XPathException

public class XPathException extends Exception
XPath exception.
author
Andy Clark, IBM
version
$Id: XPathException.java,v 1.4 2002/04/15 19:46:24 neilg Exp $

Fields Summary
private String
fKey
Constructors Summary
public XPathException()
Constructs an exception.

        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;