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
-
EOFException()
- Constructs an EOFException with no detail message.
-
EOFException(String)
- Constructs an EOFException with the specified detail message.
EOFException
public EOFException()
- Constructs an EOFException with no detail message.
A detail message is a String that describes this particular exception.
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