Class java.io.EOFException
All Packages    This Package    Previous    Next

Class java.io.EOFException

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----java.io.IOException
                           |
                           +----java.io.EOFException

public class EOFException
extends IOException
Signals that and EOF has been reached unexpectedly during input.
See Also:
IOException, DataInputStream
Version:
1.1, 08/15/95
Author:
Frank Yellin

Constructor Index

 o EOFException()
Constructs an EOFException with no detail message.
 o EOFException(String)
Constructs an EOFException with the specified detail message.

Constructors

 o EOFException
  public EOFException()
Constructs an EOFException with no detail message. A detail message is a String that describes this particular exception.

 o EOFException

  public EOFException(String s)
Constructs an EOFException with the specified detail message. A detail message is a String that describes this particular exception.
Parameters:
s - the detail message


All Packages    This Package    Previous    Next