Class MissingTableException

  • All Implemented Interfaces:
    java.io.Serializable

    public class MissingTableException
    extends org.datanucleus.exceptions.DatastoreValidationException
    A MissingTableException is thrown if an expected table is not found in the database during schema validation.
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private static long serialVersionUID  
    • Constructor Summary

      Constructors 
      Constructor Description
      MissingTableException​(java.lang.String catalogName, java.lang.String schemaName, java.lang.String tableName)
      Constructs a missing table exception.
    • Method Summary

      • Methods inherited from class org.datanucleus.exceptions.NucleusException

        getCause, getFailedObject, getNestedExceptions, isFatal, printStackTrace, printStackTrace, printStackTrace, setFatal, setNestedException
      • Methods inherited from class java.lang.Throwable

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

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

      • MissingTableException

        public MissingTableException​(java.lang.String catalogName,
                                     java.lang.String schemaName,
                                     java.lang.String tableName)
        Constructs a missing table exception.
        Parameters:
        catalogName - Catalog name which the table was searched.
        schemaName - Schema name which the table was searched.
        tableName - Name of the table that was missing.