Class UnresolvableException
java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.xml.xpath.XPathException
org.apache.taglibs.standard.tag.common.xml.UnresolvableException
- All Implemented Interfaces:
Serializable
Derived from XPathException in order that XPath processor
exceptions may be specifically caught.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionUnresolvableException(String message) Create an UnresolvableException object that holds an error message.UnresolvableException(Throwable cause) Create an UnresolvableException object that holds an error message, and another exception that caused this exception. -
Method Summary
Methods inherited from class javax.xml.xpath.XPathException
getCause, printStackTrace, printStackTrace, printStackTraceMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, setStackTrace, toString
-
Constructor Details
-
UnresolvableException
Create an UnresolvableException object that holds an error message.- Parameters:
message- The error message.
-
UnresolvableException
Create an UnresolvableException object that holds an error message, and another exception that caused this exception.- Parameters:
cause- The exception that caused this exception.
-