Package org.hibernate.exception
This package is a fork of Apache commons-lang nestable exceptions.
Configurable | The Configurable interface defines the contract for SQLExceptionConverter impls that
want to be configured prior to usage given the currently defined Hibernate properties. |
Nestable | An interface to be implemented by java.lang.Throwable
extensions which would like to be able to nest root exceptions
inside themselves. |
SQLExceptionConverter | Defines a contract for implementations that know how to convert a SQLException
into Hibernate's JDBCException hierarchy. |
ViolatedConstraintNameExtracter | Defines a contract for implementations that can extract the name of a violated
constraint from a SQLException that is the result of that constraint violation. |
CacheSQLStateConverter | A SQLExceptionConverter implementation specific to Caché SQL,
accounting for its custom integrity constraint violation error codes. |
ConstraintViolationException | Implementation of JDBCException indicating that the requested DML operation
resulted in a violation of a defined integrity constraint. |
DataException | Implementation of JDBCException indicating that evaluation of the
valid SQL statement against the given data resulted in some
illegal operation, mismatched types or incorrect cardinality. |
ExceptionUtils | Provides utilities for manipulating and examining
Throwable objects. |
GenericJDBCException | Generic, non-specific JDBCException. |
JDBCConnectionException | Implementation of JDBCException indicating problems with communicating with the
database (can also include incorrect JDBC setup). |
JDBCExceptionHelper | Implementation of JDBCExceptionHelper. |
LockAcquisitionException | Implementation of JDBCException indicating a problem acquiring lock
on the database. |
NestableDelegate | A shared implementation of the nestable exception functionality. |
NestableException | The base class of all exceptions which can contain other exceptions. |
NestableRuntimeException | The base class of all runtime exceptions which can contain other
exceptions. |
SQLExceptionConverterFactory | A factory for building SQLExceptionConverter instances. |
SQLGrammarException | Implementation of JDBCException indicating that the SQL sent to the database
server was invalid (syntax error, invalid object references, etc). |
SQLStateConverter | A SQLExceptionConverter implementation which performs converion based on
the underlying SQLState. |
TemplatedViolatedConstraintNameExtracter | Knows how to extract a violated constraint name from an error message based on the
fact that the constraint name is templated within the message. |
This package is a fork of Apache commons-lang nestable exceptions.