Package com.deltaxml.htmlcompare
Class HTMLCompareInitializationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.deltaxml.core.exceptions.DeltaXMLException
com.deltaxml.htmlcompare.HTMLCompareException
com.deltaxml.htmlcompare.HTMLCompareInitializationException
- All Implemented Interfaces:
Serializable
Specifies an initialization problem in HTML Compare.
This class extends the HTMLCompareException.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionHTMLCompareInitializationException(String message) Constructs a newHTMLCompareInitializationExceptionwith the specified detail message.HTMLCompareInitializationException(String message, Throwable cause) Constructs a newHTMLCompareInitializationExceptionwith the specified detail message and a cause. -
Method Summary
Methods inherited from class com.deltaxml.core.exceptions.DeltaXMLException
getCause, getThrowableMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
HTMLCompareInitializationException
Constructs a newHTMLCompareInitializationExceptionwith the specified detail message. The cause is not initialized, and may subsequently be initialized by a call toThrowable.initCause(java.lang.Throwable).- Parameters:
message- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()method.
-
HTMLCompareInitializationException
Constructs a newHTMLCompareInitializationExceptionwith the specified detail message and a cause.- Parameters:
message- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()method.cause- the underlying cause (which is saved for later retrieval by theDeltaXMLException.getCause()method). (Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.)
-