jj2000.j2k.codestream
Class CorruptedCodestreamException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.io.IOException
                    |
                    +--jj2000.j2k.codestream.CorruptedCodestreamException

public class CorruptedCodestreamException
extends java.io.IOException

Thsi exception is thrown whenever an illegal value is read from a bit stream. The cause can be either a corrupted bit stream, or a a bit stream which is illegal.

See Also:
Serialized Form

Fields inherited from class java.lang.Throwable
backtrace, detailMessage, serialVersionUID
 
Constructor Summary
CorruptedCodestreamException()
          Constructs a new CorruptedCodestreamException exception with no detail message.
CorruptedCodestreamException(java.lang.String s)
          Constructs a new CorruptedCodestreamException exception with the specified detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, printStackTrace0, toString
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, wait, wait, wait
 

Constructor Detail

CorruptedCodestreamException

public CorruptedCodestreamException()
Constructs a new CorruptedCodestreamException exception with no detail message.

CorruptedCodestreamException

public CorruptedCodestreamException(java.lang.String s)
Constructs a new CorruptedCodestreamException exception with the specified detail message.
Parameters:
s - The detail message.