XPathExceptionpublic class XPathException extends Exception
Fields Summary |
---|
static final long | serialVersionUIDSerialization 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;
|
|