Sharkysoft home

lava.io
Class FileFormatException

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

public class FileFormatException
extends java.io.IOException

Indicates incompatible file format.

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

See Also:
StreamFormatException, Serialized Form

Constructor Summary
FileFormatException()
          Initializes with no detail message.
FileFormatException(java.lang.String s)
          Initializes with 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

FileFormatException

public FileFormatException()
Initializes with no detail message.

FileFormatException

public FileFormatException(java.lang.String s)
Initializes with detail message.
Parameters:
s - the detail message

Sharkysoft home