FileDocCategorySizeDatePackage
XPathException.javaAPI DocJava SE 6 API1543Tue Jun 10 00:22:44 BST 2008com.sun.org.apache.xerces.internal.impl.xpath

XPathException

public class XPathException extends Exception
XPath exception.
xerces.internal
author
Andy Clark, IBM
version
$Id: XPathException.java,v 1.2.6.1 2005/09/06 11:46:30 neerajbj Exp $

Fields Summary
static final long
serialVersionUID
Serialization version.
private 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;