Package com.deltaxml.pdfcompare
Class PDFReportException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.deltaxml.core.exceptions.DeltaXMLException
com.deltaxml.pdfcompare.PDFCompareException
com.deltaxml.pdfcompare.PDFReportException
- All Implemented Interfaces:
Serializable
Specifies a problem creating
This class extends the PDFCompareException.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionPDFReportException(String message) Constructs a newPDFReportExceptionwith the specified detail message.PDFReportException(String message, Throwable cause) Constructs a newPDFReportExceptionwith 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
-
PDFReportException
Constructs a newPDFReportExceptionwith 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.
-
PDFReportException
Constructs a newPDFReportExceptionwith 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.)
-