Sharkysoft home

lava.io
Class StreamFormatException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.io.IOException
                    |
                    +--lava.io.StreamFormatException
All Implemented Interfaces:
java.io.Serializable

public class StreamFormatException
extends java.io.IOException

Indicates incompatible stream format.

Details: A StreamFormatException indicates that the data read from a stream does not conform to the rules defined for the type of stream being read.

See Also:
FileFormatException, Serialized Form

Constructor Summary
StreamFormatException()
          Initializes a new StreamFormatException with no detail message.
StreamFormatException(java.lang.String s)
          Initializes a new StreamFormatException with the specified detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

StreamFormatException

public StreamFormatException()
Initializes a new StreamFormatException with no detail message.

StreamFormatException

public StreamFormatException(java.lang.String s)
Initializes a new StreamFormatException with the specified detail message.
Parameters:
s - the detail message

Sharkysoft home