Package com.lowagie.text.exceptions
Class UnsupportedPdfException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
com.lowagie.text.exceptions.InvalidPdfException
com.lowagie.text.exceptions.UnsupportedPdfException
- All Implemented Interfaces:
Serializable
Typed exception used when opening an existing PDF document. Gets thrown when the document isn't a valid PDF document
according to iText, but it's different from the InvalidPdfException in the sense that it may be an iText limitation
(most of the times it isn't but you might have bumped into something that has been added to the PDF specs, but that
isn't supported in iText yet).
- Since:
- 2.1.5
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionUnsupportedPdfException
(String message) Creates an instance of an UnsupportedPdfException. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDa serial version UID- See Also:
-
-
Constructor Details
-
UnsupportedPdfException
Creates an instance of an UnsupportedPdfException.- Parameters:
message
- the reason why the document isn't a PDF document according to iText.
-