Class 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:
  • Constructor Details

    • 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 exception
      cause - 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