Package org.springframework.xml.xpath
Class XPathException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.xml.XmlException
org.springframework.xml.xpath.XPathException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
XPathParseException
Exception thrown when an error occurs during XPath processing.
- Since:
- 1.0.0
- Author:
- Arjen Poutsma
- See Also:
-
Constructor Summary
ConstructorDescriptionXPathException
(String message) Constructs a new instance of theXPathException
with the specific detail message.XPathException
(String message, Throwable throwable) Constructs a new instance of theXPathException
with the specific detail message and exception. -
Method Summary
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getMostSpecificCause, getRootCause
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
XPathException
Constructs a new instance of theXPathException
with the specific detail message.- Parameters:
message
- the detail message
-
XPathException
Constructs a new instance of theXPathException
with the specific detail message and exception.- Parameters:
message
- the detail messagethrowable
- the wrapped exception
-