Class TableNotFoundException

  • All Implemented Interfaces:
    java.io.Serializable

    public class TableNotFoundException
    extends java.lang.RuntimeException
    Thrown to indicate that a table does not exist.
    Since:
    1.4.0
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      TableNotFoundException​(java.lang.String tableName)
      Constructs an TableNotFoundException with the specified table name.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static void assertThrown​(@NotNull java.lang.Runnable runnable)
      Asserts that the specified runnable throws this exception and if not throws an junit assertion failure.
      • 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

      • TableNotFoundException

        public TableNotFoundException​(java.lang.String tableName)
        Constructs an TableNotFoundException with the specified table name.
        Parameters:
        tableName - the table name
    • Method Detail

      • assertThrown

        public static void assertThrown​(@NotNull
                                        @NotNull java.lang.Runnable runnable)
        Asserts that the specified runnable throws this exception and if not throws an junit assertion failure.
        Parameters:
        runnable - the runnable to verify