com.coyotegulch.jisp
Class HuffmanException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by com.coyotegulch.jisp.HuffmanException
All Implemented Interfaces:
java.io.Serializable

public class HuffmanException
extends java.lang.RuntimeException

Standard exception type thrown by the Huffman compression.

See Also:
Huffman, Serialized Form

Constructor Summary
HuffmanException()
          Constructs a new HuffmanException with null as its error message string.
HuffmanException(java.lang.String message)
          Constructs a new HuffmanException with message as its error message string.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

HuffmanException

public HuffmanException()
Constructs a new HuffmanException with null as its error message string.


HuffmanException

public HuffmanException(java.lang.String message)
Constructs a new HuffmanException with message as its error message string.

Parameters:
message - Error message string.