- 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 SummaryConstructors 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.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
- 
 
- 
- 
- 
Constructor Detail- 
EOFExceptionpublic EOFException() Creates a new end-of-file exception. No message or cause is included.
 - 
EOFExceptionpublic 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 exception
- cause- the underlying cause of the exception
 
 - 
EOFExceptionpublic EOFException(String message) Creates a new end-of-file exception. The specified message is reported.- Parameters:
- message- the message to associate with the exception
 
 - 
EOFExceptionpublic EOFException(Throwable cause) Creates a new end-of-file exception. The specified cause is reported.- Parameters:
- cause- the underlying cause of the exception
 
 
- 
 
-