Class PDFUnableToCompleteOperationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.adobe.internal.pdftoolkit.core.exceptions.PDFException
com.adobe.internal.pdftoolkit.core.exceptions.PDFUnableToCompleteOperationException
- All Implemented Interfaces:
Serializable
This exception indicates that an error has occurred which is not
mappable into one of the other exception classes. This could be a
variety of things such as invalid/inconsistent internal state of an
object, erroneous hard-coded internal data, or unmappable exceptions that
are thrown from external libraries (the JDK or Jars).
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreate a new PDFUnableToCompleteOperationException.PDFUnableToCompleteOperationException
(String message, Throwable cause) Create a new PDFUnableToCompleteOperationException wrapping an existing exception.Create a new PDFUnableToCompleteOperationException wrapping an existing exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
PDFUnableToCompleteOperationException
Create a new PDFUnableToCompleteOperationException.- Parameters:
message
- the detail message.
-
PDFUnableToCompleteOperationException
Create a new PDFUnableToCompleteOperationException wrapping an existing exception.- Parameters:
message
- the detail message.cause
- the cause.
-
PDFUnableToCompleteOperationException
Create a new PDFUnableToCompleteOperationException wrapping an existing exception.- Parameters:
cause
- the cause.
-