Package com.deltaxml.core.exceptions
Class DeltaXMLException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.deltaxml.core.exceptions.DeltaXMLException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
CheckCancelledException,ComparisonCancelledException,ComparisonException,ConditionalFilterXPathException,ConfigurationValidationException,ContentEqualityCheckException,DeltaXMLProcessingException,DitaIOException,DitaTopicProcessingException,DoctypeChangeException,DoctypeMissingException,FeatureNotRecognizedException,FeatureSettingNotSupportedException,FilterClassInstantiationException,FilterConfigurationException,FilterException,FilterParameterizationException,FilterProcessingException,HTMLCompareException,InputLoadException,InvalidInputException,InvalidParameterException,InvalidPipelineException,MSWordCompareException,NonUniqueParameterNameException,ParameterValueConflict,ParserException,PDConfigurationException,PDFCompareException,PerformMarkupException,PipelineException,PipelineLoadingException,PipelineSerializationException,PowerPointCompareException,PropertyNotRecognizedException,PropertySettingNotSupportedException,SerializationException,TransformerInstantiationException,UnknownParameterException
This class specifies an exceptional condition.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDeltaXMLException(String message) Creates a new exception with an identifying message.DeltaXMLException(String message, Throwable e) Creates a new exception which wraps an existing exception and provides an additional message.Creates a new exception which wraps an existing exception. -
Method Summary
Modifier and TypeMethodDescriptiongetCause()Return the throwable that this exception wraps.Return the throwable that this exception wraps.Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
DeltaXMLException
Creates a new exception with an identifying message.
- Parameters:
message- The error or warning message.
-
DeltaXMLException
Creates a new exception which wraps an existing exception.
- Parameters:
e- The Exception or Error to wrap.
-
DeltaXMLException
Creates a new exception which wraps an existing exception and provides an additional message.
- Parameters:
e- The Exception or Error to wrap.message- The error or warning message.
-
-
Method Details
-
getThrowable
Return the throwable that this exception wraps. This is often the underlying cause of the Exception/Error.- Returns:
- A java.lang.Throwable object, or null.
- See Also:
-
getCause
Return the throwable that this exception wraps. This is often the underlying cause of the Exception/Error.
-