Class PDFRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.adobe.internal.pdftoolkit.core.exceptions.PDFRuntimeException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
PDFCosNumberParseRuntimeException
public class PDFRuntimeException extends java.lang.RuntimeException
This is the base class of all runtime exceptions that are thrown from Gibson. Inside our code this exception should be thrown, instead of creating instances of RuntimeException.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PDFRuntimeException(PDFException ex)
Creates a PDFRuntimeException by wrapping a PDFExceptionPDFRuntimeException(java.lang.String message)
Constructor with a string messagePDFRuntimeException(java.lang.String message, java.lang.Throwable ex)
Creates a PDFRuntimeException by wrapping a Exception and a message
-
-
-
Constructor Detail
-
PDFRuntimeException
public PDFRuntimeException(java.lang.String message)
Constructor with a string message
-
PDFRuntimeException
public PDFRuntimeException(PDFException ex)
Creates a PDFRuntimeException by wrapping a PDFException
-
PDFRuntimeException
public PDFRuntimeException(java.lang.String message, java.lang.Throwable ex)
Creates a PDFRuntimeException by wrapping a Exception and a message
-
-