EOFExceptionpublic class EOFException extends IOException Thrown when a program encounters the end of a file or stream during an input
operation. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public EOFException()Constructs a new {@code EOFException} with its stack trace filled in.
super();
| public EOFException(String detailMessage)Constructs a new {@code EOFException} with its stack trace and detail
message filled in.
super(detailMessage);
|
|