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

public class DeltaXMLException extends Exception

This class specifies an exceptional condition.

See Also:
  • Constructor Details

    • DeltaXMLException

      public DeltaXMLException(String message)

      Creates a new exception with an identifying message.

      Parameters:
      message - The error or warning message.
    • DeltaXMLException

      public DeltaXMLException(Throwable e)

      Creates a new exception which wraps an existing exception.

      Parameters:
      e - The Exception or Error to wrap.
    • DeltaXMLException

      public DeltaXMLException(String message, Throwable e)

      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

      public Throwable 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

      public Throwable getCause()
      Return the throwable that this exception wraps. This is often the underlying cause of the Exception/Error.
      Overrides:
      getCause in class Throwable
      Returns:
      A java.lang.Throwable object, or null if the cause is nonexistant or unknown.
      See Also: