Package nu.xom
Class XPathException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
nu.xom.XPathException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
XPathTypeException
Indicates problems with XPath syntax or evaluation.
- Version:
- 1.1b3
- Author:
- Elliotte Rusty Harold
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionXPathException
(String message) Creates a newXPathException
with a detail message.XPathException
(String message, Throwable cause) Creates a newIllegalNameException
with a detail message and an underlying root cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
XPathException
Creates a new
XPathException
with a detail message.- Parameters:
message
- a string indicating the specific problem
-
XPathException
Creates a new
IllegalNameException
with a detail message and an underlying root cause.- Parameters:
message
- a string indicating the specific problemcause
- the original cause of this exception
-
-
Method Details
-
getCause
Return the original cause that led to this exception, or null if there was no original exception.
-
initCause
Sets the root cause of this exception. This may only be called once. Subsequent calls throw an
IllegalStateException
.This method is unnecessary in Java 1.4 where it could easily be inherited from the superclass. However, including it here allows this method to be used in Java 1.3 and earlier.
- Overrides:
initCause
in classThrowable
- Parameters:
cause
- the root cause of this exception- Returns:
- this
XMLException
- Throws:
IllegalArgumentException
- if the cause is this exception (An exception cannot be its own cause.)IllegalStateException
- if this method is called twice
-
getXPath
Returns the specific XPath expression being evaluated when this excepiton was thrown.
- Returns:
- the XPath expression that caused the exception
-