Class PdfOfficeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.itextpdf.commons.exceptions.ITextException
com.itextpdf.pdfoffice.exceptions.PdfOfficeException
- All Implemented Interfaces:
-
Serializable
public class PdfOfficeException extends com.itextpdf.commons.exceptions.ITextException
Runtime exception that gets thrown if something goes wrong in the office files to PDF conversion.
- See Also:
-
Constructor Summary
ConstructorDescriptionPdfOfficeException
(String message) CreatesPdfOfficeException
instance.PdfOfficeException
(String message, Throwable cause) CreatesPdfOfficeException
instance. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
PdfOfficeException
CreatesPdfOfficeException
instance.- Parameters:
-
message
- a message which describes the exception
-
PdfOfficeException
CreatesPdfOfficeException
instance.- Parameters:
-
message
- a message which describes the exception -
cause
- the cause (which is saved for later retrieval byThrowable.getCause()
method).
-