Package com.coyotegulch.jisp
Class HuffmanException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.coyotegulch.jisp.HuffmanException
- All Implemented Interfaces:
Serializable
Standard exception type thrown by the Huffman compression.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a newHuffmanException
with null as its error message string.HuffmanException
(String message) Constructs a newHuffmanException
withmessage
as its error message string. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
HuffmanException
public HuffmanException()Constructs a newHuffmanException
with null as its error message string. -
HuffmanException
Constructs a newHuffmanException
withmessage
as its error message string.- Parameters:
message
- Error message string.
-