Class TupleFileException

  • All Implemented Interfaces:
    java.io.Serializable

    public class TupleFileException
    extends StorageException
    This class represents errors that occur while manipulating tuple files.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      TupleFileException()
      Construct a tuple-file exception with no message.
      TupleFileException​(java.lang.String msg)
      Construct a tuple-file exception with the specified message.
      TupleFileException​(java.lang.String msg, java.lang.Throwable cause)
      Construct a tuple-file exception with the specified message and cause.
      TupleFileException​(java.lang.Throwable cause)
      Construct a tuple-file 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

      • TupleFileException

        public TupleFileException()
        Construct a tuple-file exception with no message.
      • TupleFileException

        public TupleFileException​(java.lang.String msg)
        Construct a tuple-file exception with the specified message.
      • TupleFileException

        public TupleFileException​(java.lang.Throwable cause)
        Construct a tuple-file exception with the specified cause and no message.
      • TupleFileException

        public TupleFileException​(java.lang.String msg,
                                  java.lang.Throwable cause)
        Construct a tuple-file exception with the specified message and cause.