Class TableException

  • All Implemented Interfaces:
    java.io.Serializable

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

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

      • TableException

        public TableException()
        Construct a table exception with no message.
      • TableException

        public TableException​(java.lang.String msg)
        Construct a table exception with the specified message.
      • TableException

        public TableException​(java.lang.Throwable cause)
        Construct a table exception with the specified cause and no message.
      • TableException

        public TableException​(java.lang.String msg,
                              java.lang.Throwable cause)
        Construct a table exception with the specified message and cause.