XPathExceptionpublic class XPathException extends Exception
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;
|
|