Package org.apache.commons.compress
Class CompressException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- org.apache.commons.compress.CompressException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
ArchiveException,CompressorException,MemoryLimitException,Pack200Exception,PasswordRequiredException
public class CompressException extends java.io.IOException
Signals that a Pack200 Compress exception of some sort has occurred.- Since:
- 1.28.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CompressException()Constructs anCompressExceptionwithnullas its error detail message.CompressException(java.lang.String message)Constructs a new exception with the specified detail message.CompressException(java.lang.String message, java.lang.Throwable cause)Constructs a new exception with the specified detail message and cause.CompressException(java.lang.Throwable cause)Constructs aCompressExceptionwith the specified cause and a detail message.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description protected static <T,E extends java.lang.Throwable>
TrequireNonNull(java.lang.Class<? super E> cls, T obj, java.util.function.Supplier<java.lang.String> messageSupplier)Checks that the specified object reference is notnulland throws a customizedCompressExceptionif it is.
-
-
-
Constructor Detail
-
CompressException
public CompressException()
Constructs anCompressExceptionwithnullas its error detail message.
-
CompressException
public CompressException(java.lang.String message)
Constructs a new exception with the specified detail message. The cause is not initialized.- Parameters:
message- The message (which is saved for later retrieval by theThrowable.getMessage()method).
-
CompressException
public CompressException(java.lang.String message, java.lang.Throwable cause)
Constructs a new exception with the specified detail message and cause.- Parameters:
message- The message (which is saved for later retrieval by theThrowable.getMessage()method).cause- The cause (which is saved for later retrieval by theThrowable.getCause()method). A null value indicates that the cause is nonexistent or unknown.
-
CompressException
public CompressException(java.lang.Throwable cause)
Constructs aCompressExceptionwith the specified cause and a detail message.- Parameters:
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
-
requireNonNull
protected static <T,E extends java.lang.Throwable> T requireNonNull(java.lang.Class<? super E> cls, T obj, java.util.function.Supplier<java.lang.String> messageSupplier) throws E extends java.lang.Throwable
Checks that the specified object reference is notnulland throws a customizedCompressExceptionif it is. *- Type Parameters:
T- The type of the reference.E- The type of the exception.- Parameters:
cls- The exception class.obj- The object reference to check for nullity.messageSupplier- supplier of the detail message to be used in the event that aArchiveExceptionis thrown- Returns:
objif notnull.- Throws:
E- ifobjisnull.E extends java.lang.Throwable
-
-