Class UnexpectedColumnException
- 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.UnexpectedColumnException
-
- All Implemented Interfaces:
Serializable
public class UnexpectedColumnException extends org.datanucleus.exceptions.DatastoreValidationException
A UnexpectedColumnException is thrown if an unexpected column is encountered in the database during schema validation.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnexpectedColumnException(String table_name, String column_name, String schema_name, String catalog_name)
Constructs a unexpected column 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
-
-
-
-
Constructor Detail
-
UnexpectedColumnException
public UnexpectedColumnException(String table_name, String column_name, String schema_name, String catalog_name)
Constructs a unexpected column exception.- Parameters:
table_name
- The table in which the column was found.column_name
- The name of the unexpected column.schema_name
- The schema namecatalog_name
- The catalog name
-
-