Exception Summary |
DuplicateColumnNameException |
A DuplicateColumnNameException is thrown if an attempt is made to
add a column to a table with a name already in-use by an existing column. |
IncompatibleDataTypeException |
A IncompatibleDataTypeException is thrown if a column is detected to
have an incompatible type in the database during schema validation. |
MissingColumnException |
A MissingColumnException is thrown if an expected column is
not found in the database during schema validation. |
MissingTableException |
A MissingTableException is thrown if an expected table is
not found in the database during schema validation. |
NotATableException |
A NotATableException is thrown during schema validation if a
table should be a table but is found not to be in the database. |
NotAViewException |
A NotAViewException is thrown during schema validation if a
table should be a view but is found not to be in the database. |
PersistentSuperclassNotAllowedException |
A PersistentSuperclassNotAllowedException is thrown if a
persistence-capable class is declared to have a persistence-capable
superclass when that class is backed by a view. |
PrimaryKeyColumnNotAllowedException |
A PrimaryKeyColumnNotAllowedException is thrown if an attempt is
made to add a primary key column to a view. |
TooManyForeignKeysException |
A TooManyForeignKeysException is thrown when trying to add a foreign
key to a table and the table already has the maximum allowed number of
foreign keys. |
TooManyIndicesException |
A TooManyIndicesException is thrown when trying to add an index
to a table and the table already has the maximum allowed number of indices. |
UnexpectedColumnException |
A UnexpectedColumnException is thrown if an unexpected column is
encountered in the database during schema validation. |
ViewDefinitionException |
A ViewDefinitionException is thrown if the metadata extension(s)
that define a view are missing or invalid. |
WrongPrecisionException |
A WrongPrecisionException is thrown if a column is detected to have
the wrong precision in the database during schema validation. |
WrongPrimaryKeyException |
A WrongPrimaryKeyException is thrown if a table is detected not to
have the expected primary key in the database during schema validation. |
WrongScaleException |
A WrongScaleException is thrown if a column is detected to have
the wrong scale in the database during schema validation. |