Package com.itextpdf.commons.exceptions
Class ITextException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.itextpdf.commons.exceptions.ITextException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
AggregatedException,AttributeNotFoundException,FontCompressionException,IOException,PdfException,ProductEventHandlerRepeatException,ReadingByteLimitException,StyledXMLParserException,UnknownProductException,WriterException,XfdfException
public class ITextException extends java.lang.RuntimeExceptionGeneral iText exception.Important note, not all iText exceptions are extended from ITextException.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ITextException()Creates a new ITextException with no error message and cause.ITextException(java.lang.String message)Creates a new ITextException.ITextException(java.lang.String message, java.lang.Throwable cause)Creates a new ITextException.ITextException(java.lang.Throwable cause)Creates a new ITextException.
-
-
-
Constructor Detail
-
ITextException
public ITextException()
Creates a new ITextException with no error message and cause.
-
ITextException
public ITextException(java.lang.String message)
Creates a new ITextException.- Parameters:
message- the detail message
-
ITextException
public ITextException(java.lang.Throwable cause)
Creates a new ITextException.- Parameters:
cause- the cause (which is saved for later retrieval byThrowable.getCause()method)
-
ITextException
public ITextException(java.lang.String message, java.lang.Throwable cause)Creates a new ITextException.- Parameters:
message- the detail messagecause- the cause (which is saved for later retrieval byThrowable.getCause()method)
-
-