Package com.itextpdf.kernel.exceptions
Class MemoryLimitsAwareException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.itextpdf.commons.exceptions.ITextException
-
- com.itextpdf.kernel.exceptions.PdfException
-
- com.itextpdf.kernel.exceptions.MemoryLimitsAwareException
-
- All Implemented Interfaces:
java.io.Serializable
public class MemoryLimitsAwareException extends PdfException
Exception class for exceptions occurred during decompressed pdf streams processing.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class com.itextpdf.kernel.exceptions.PdfException
object
-
-
Constructor Summary
Constructors Constructor Description MemoryLimitsAwareException(java.lang.String message)
Creates a new instance of MemoryLimitsAwareException.MemoryLimitsAwareException(java.lang.String message, java.lang.Throwable cause)
Creates a new instance of MemoryLimitsAwareException.MemoryLimitsAwareException(java.lang.Throwable cause)
Creates a new instance of MemoryLimitsAwareException.
-
Method Summary
-
Methods inherited from class com.itextpdf.kernel.exceptions.PdfException
getMessage, getMessageParams, setMessageParams
-
-
-
-
Constructor Detail
-
MemoryLimitsAwareException
public MemoryLimitsAwareException(java.lang.String message)
Creates a new instance of MemoryLimitsAwareException.- Parameters:
message
- the detail message.
-
MemoryLimitsAwareException
public MemoryLimitsAwareException(java.lang.Throwable cause)
Creates a new instance of MemoryLimitsAwareException.- Parameters:
cause
- the cause (which is saved for later retrieval byThrowable.getCause()
method).
-
MemoryLimitsAwareException
public MemoryLimitsAwareException(java.lang.String message, java.lang.Throwable cause)
Creates a new instance of MemoryLimitsAwareException.- Parameters:
message
- the detail message.cause
- the cause (which is saved for later retrieval byThrowable.getCause()
method).
-
-