java.io
Class EOFException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--java.io.IOException
|
+--java.io.EOFException
- All Implemented Interfaces:
- Serializable
- public class EOFException
- extends IOException
Untamed: Signals that an end of file or end of stream has been reached
unexpectedly during input.
This exception is mainly used by data input streams to signal end of
stream. Note that many other input operations return a special value on
end of stream rather than throwing an exception.
- Since:
- JDK1.0
- Version:
- 1.11, 12/03/01
- Author:
- Frank Yellin
- See Also:
java.io.DataInputStream
,
java.io.IOException
,
Serialized Form
Fields inherited from class java.lang.Exception |
|
Fields inherited from class java.lang.Throwable |
|
Constructor Summary |
EOFException()
Enabled: Constructs an EOFException with null
as its error detail message. |
EOFException(String s)
Enabled: Constructs an EOFException with the specified detail
message. |
Methods inherited from class java.lang.Throwable |
backtrace, eStack, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, javaStack, leaf, printStackTrace, printStackTrace, printStackTrace, printThrowableOn, setStackTrace, toString, unwrap |
EOFException
public EOFException()
- Enabled: Constructs an
EOFException
with null
as its error detail message.
EOFException
public EOFException(String s)
- Enabled: Constructs an
EOFException
with the specified detail
message. The string s
may later be retrieved by the
java.lang.Throwable#getMessage
method of class
java.lang.Throwable
.
- Parameters:
s
- the detail message.
comments?