Class MissingTableException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.datanucleus.exceptions.NucleusException
org.datanucleus.exceptions.NucleusDataStoreException
org.datanucleus.exceptions.DatastoreValidationException
org.datanucleus.store.rdbms.exceptions.MissingTableException
- All Implemented Interfaces:
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:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionMissingTableException
(String catalogName, String schemaName, 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
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
-
Constructor Details
-
MissingTableException
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.
-