Package org.apache.commons.compress
Class MemoryLimitException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- org.apache.commons.compress.CompressException
-
- org.apache.commons.compress.MemoryLimitException
-
- All Implemented Interfaces:
java.io.Serializable
public class MemoryLimitException extends CompressException
If a stream checks for estimated memory allocation, and the estimate goes above the memory limit, this is thrown. This can also be thrown if a stream tries to allocate a byte array that is larger than the allowable limit.- Since:
- 1.14
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MemoryLimitException(long memoryNeededKiB, int memoryLimitKiB)Constructs a new instance.MemoryLimitException(long memoryNeededKiB, int memoryLimitKiB, java.lang.Exception cause)Deprecated.MemoryLimitException(long memoryNeededKiB, int memoryLimitKiB, java.lang.Throwable cause)Constructs a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetMemoryLimitInKb()Gets the memory limit in kibibytes (KiB).longgetMemoryNeededInKb()Gets the memory needed in kibibytes (KiB).-
Methods inherited from class org.apache.commons.compress.CompressException
requireNonNull
-
-
-
-
Constructor Detail
-
MemoryLimitException
public MemoryLimitException(long memoryNeededKiB, int memoryLimitKiB)
Constructs a new instance.- Parameters:
memoryNeededKiB- The memory needed in kibibytes (KiB).memoryLimitKiB- The memory limit in kibibytes (KiB).
-
MemoryLimitException
@Deprecated public MemoryLimitException(long memoryNeededKiB, int memoryLimitKiB, java.lang.Exception cause)
Deprecated.Constructs a new instance.- Parameters:
memoryNeededKiB- The memory needed in kibibytes (KiB).memoryLimitKiB- The memory limit in kibibytes (KiB).cause- The cause (which is saved for later retrieval by theThrowable.getCause()method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-
MemoryLimitException
public MemoryLimitException(long memoryNeededKiB, int memoryLimitKiB, java.lang.Throwable cause)
Constructs a new instance.- Parameters:
memoryNeededKiB- The memory needed in kibibytes (KiB).memoryLimitKiB- The memory limit in kibibytes (KiB).cause- The cause (which is saved for later retrieval by theThrowable.getCause()method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-
-
Method Detail
-
getMemoryLimitInKb
public int getMemoryLimitInKb()
Gets the memory limit in kibibytes (KiB).- Returns:
- the memory limit in kibibytes (KiB).
-
getMemoryNeededInKb
public long getMemoryNeededInKb()
Gets the memory needed in kibibytes (KiB).- Returns:
- the memory needed in kibibytes (KiB).
-
-