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

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

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  Class Hierarchy  This Package  Previous  Next  Index