Package net.sf.saxon.s9api
Class SaxonApiUncheckedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
net.sf.saxon.s9api.SaxonApiUncheckedException
- All Implemented Interfaces:
Serializable
An unchecked exception thrown by the Saxon API. Unchecked exceptions are used only when errors occur in a method
for which the interface specification defines no checked exception, for example
Iterator.next()
.
The exception always wraps some underlying exception, which can be retrieved using Throwable.getCause()
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the detail message string of this throwable.Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
Method Details
-
getMessage
Returns the detail message string of this throwable.- Overrides:
getMessage
in classThrowable
- Returns:
- the detail message string of this
Throwable
instance (which may benull
).
-