Module me.hugmanrique.cartage
Class DecompressionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
me.hugmanrique.cartage.compression.DecompressionException
- All Implemented Interfaces:
Serializable
Indicates an error occurred while attempting to decompress data from a
Cartridge.- See Also:
- Serialized Form
-
Constructor Summary
ConstructorsConstructorDescriptionDecompressionException(String message)Constructs a decompression exception with the given detail message and no cause.DecompressionException(String message, @Nullable Throwable cause)Constructs a decompression exception with the given detail message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
DecompressionException
Constructs a decompression exception with the given detail message and no cause.- Parameters:
message- the detail message
-
DecompressionException
Constructs a decompression exception with the given detail message and cause.- Parameters:
message- the detail messagecause- the cause
-