java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.pervasive.datarush.exceptions.DRException
com.pervasive.datarush.io.EOFException
- All Implemented Interfaces:
Serializable
An exception indicating end-of-file has been unexpectedly reached on a
stream.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new end-of-file exception.EOFException(String message) Creates a new end-of-file exception.EOFException(String message, Throwable cause) Creates a new end-of-file exception.EOFException(Throwable cause) Creates a new end-of-file exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
EOFException
public EOFException()Creates a new end-of-file exception. No message or cause is included. -
EOFException
Creates a new end-of-file exception. The specified message and cause are reported.- Parameters:
message- the message to associate with the exceptioncause- the underlying cause of the exception
-
EOFException
Creates a new end-of-file exception. The specified message is reported.- Parameters:
message- the message to associate with the exception
-
EOFException
Creates a new end-of-file exception. The specified cause is reported.- Parameters:
cause- the underlying cause of the exception
-