- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- kala.compress.compressors.CompressorException
-
- All Implemented Interfaces:
java.io.Serializable
public class CompressorException extends java.io.IOExceptionSignals that an Compressor exception of some sort has occurred.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUIDSerial.
-
Constructor Summary
Constructors Constructor Description CompressorException(java.lang.String message)Constructs a new exception with the specified detail message.CompressorException(java.lang.String message, java.lang.Throwable cause)Constructs a new exception with the specified detail message and cause.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
Serial.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
CompressorException
public CompressorException(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).
-
CompressorException
public CompressorException(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 indicates that the cause is nonexistent or unknown.
-
-