Class InvalidFilePointerException

  • All Implemented Interfaces:
    java.io.Serializable

    public class InvalidFilePointerException
    extends StorageException
    This exception class can be thrown when a file-pointer is discovered to be invalid for some reason. For example, file-pointers can be invalid if they do not point to an actual tuple in a table-file.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      InvalidFilePointerException()
      Construct an invalid file-pointer exception with no message.
      InvalidFilePointerException​(java.lang.String msg)
      Construct an invalid file-pointer exception with the specified message.
      InvalidFilePointerException​(java.lang.String msg, java.lang.Throwable cause)
      Construct an invalid file-pointer exception with the specified message and cause.
      InvalidFilePointerException​(java.lang.Throwable cause)
      Construct an invalid file-pointer exception with the specified cause and no message.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • InvalidFilePointerException

        public InvalidFilePointerException()
        Construct an invalid file-pointer exception with no message.
      • InvalidFilePointerException

        public InvalidFilePointerException​(java.lang.String msg)
        Construct an invalid file-pointer exception with the specified message.
      • InvalidFilePointerException

        public InvalidFilePointerException​(java.lang.Throwable cause)
        Construct an invalid file-pointer exception with the specified cause and no message.
      • InvalidFilePointerException

        public InvalidFilePointerException​(java.lang.String msg,
                                           java.lang.Throwable cause)
        Construct an invalid file-pointer exception with the specified message and cause.