- 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
public class EOFException extends DRException
An exception indicating end-of-file has been unexpectedly reached on a stream.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EOFException()
Creates 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 Detail
-
EOFException
public EOFException()
Creates a new end-of-file exception. No message or cause is included.
-
EOFException
public EOFException(String message, Throwable cause)
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
public EOFException(String message)
Creates a new end-of-file exception. The specified message is reported.- Parameters:
message
- the message to associate with the exception
-
EOFException
public EOFException(Throwable cause)
Creates a new end-of-file exception. The specified cause is reported.- Parameters:
cause
- the underlying cause of the exception
-
-