Class RandomAccessEndOfDataException

  • All Implemented Interfaces:
    Serializable

    public class RandomAccessEndOfDataException
    extends RandomAccessDataException
    Specialized RandomAccessDataException type to indicate an error when trying to read beyond the end of a data source. In the case of a file based implementation for example this is an encapsulation of an EOFException.
    See Also:
    Serialized Form
    • Constructor Detail

      • RandomAccessEndOfDataException

        public RandomAccessEndOfDataException()
        Creates a new default instance of RandomAccessEndOfDataException.
      • RandomAccessEndOfDataException

        public RandomAccessEndOfDataException​(String message)
        Constructs an instance of RandomAccessEndOfDataException with the specified detail message.
        Parameters:
        message - the detail message
      • RandomAccessEndOfDataException

        public RandomAccessEndOfDataException​(Throwable cause)
        Constructs an instance of RandomAccessEndOfDataException with the specified cause.
        Parameters:
        cause - the cause
      • RandomAccessEndOfDataException

        public RandomAccessEndOfDataException​(String message,
                                              Throwable cause)
        Constructs an instance of RandomAccessEndOfDataException with the specified detail message and cause.
        Parameters:
        message - the detail message
        cause - the cause