Library:Hibernate
Version:2.1.8
Compatibility:JDK 1.4
Exceptions in library Hibernate.
NamePackageDescription
AssertionFailurenet.sf.hibernateIndicates failure of an assertion: a possible bug in Hibernate.
CacheExceptionnet.sf.hibernate.cacheSomething went wrong in the cache
CallbackExceptionnet.sf.hibernateShould be thrown by persistent objects from Lifecycle or Interceptor callbacks.
ConstraintViolationExceptionnet.sf.hibernate.exceptionImplementation of JDBCException indicating that the requested DML operation resulted in a violation of a defined integrity constraint.
GenericJDBCExceptionnet.sf.hibernate.exceptionGeneric, non-specific JDBCException.
HibernateExceptionnet.sf.hibernateAny exception that occurs inside the persistence layer or JDBC driver.
IdentifierGenerationExceptionnet.sf.hibernate.idThrown by IdentifierGenerator implementation class when ID generation fails.
InstantiationExceptionnet.sf.hibernateThrown if Hibernate can't instantiate an entity or component class at runtime.
JDBCConnectionExceptionnet.sf.hibernate.exceptionImplementation of JDBCConnectionException.
JDBCExceptionnet.sf.hibernateWraps an SQLException.
LazyInitializationExceptionnet.sf.hibernateA problem occurred trying to lazily initialize a collection or proxy (for example the session was closed) or iterate query results.
LockAcquisitionExceptionnet.sf.hibernate.exceptionImplementation of LockAcquisitionException.
MappingExceptionnet.sf.hibernateAn exception that usually occurs at configuration time, rather than runtime, as a result of something screwy in the O-R mappings.
NestableExceptionnet.sf.hibernate.exceptionThe base class of all exceptions which can contain other exceptions.
NestableRuntimeExceptionnet.sf.hibernate.exceptionThe base class of all runtime exceptions which can contain other exceptions.
NonUniqueObjectExceptionnet.sf.hibernateThis exception is thrown when an operation would break session-scoped identity.
NonUniqueResultExceptionnet.sf.hibernateThrown when the application calls Query.uniqueResult() and the query returned more than one result.
ObjectDeletedExceptionnet.sf.hibernateThrown when the user tries to do something illegal with a deleted object.
ObjectNotFoundExceptionnet.sf.hibernateThrown when Session.load() fails to select a row with the given primary key (identifier value).
PersistentObjectExceptionnet.sf.hibernateThrow when the user passes a persistent instance to a Session method that expects a transient instance.
PropertyAccessExceptionnet.sf.hibernateA problem occurred accessing a property of an instance of a persistent class by reflection, or via CGLIB.
PropertyNotFoundExceptionnet.sf.hibernateIndicates that an expected getter or setter method could not be found on a class.
PropertyValueExceptionnet.sf.hibernateThrown when the (illegal) value of a property can not be persisted.
QueryExceptionnet.sf.hibernateA problem occurred translating a Hibernate query to SQL due to invalid query syntax, etc.
SerializationExceptionnet.sf.hibernate.typeThrown when a property cannot be serializaed/deserialized
SQLGrammarExceptionnet.sf.hibernate.exceptionImplementation of JDBCException indicating that the SQL sent to the database server was invalid (syntax error, invalid object references, etc).
StaleObjectStateExceptionnet.sf.hibernateThrown when a version number or timestamp check failed, indicating that the Session contained stale data (when using long transactions with versioning).
TransactionExceptionnet.sf.hibernateIndicates that a transaction could not be begun, committed or rolled back.
TransientObjectExceptionnet.sf.hibernateThrow when the user passes a transient instance to a Session method that expects a persistent instance.
UnresolvableObjectExceptionnet.sf.hibernateThrown when Hibernate could not resolve an object by id, especially when loading an association.
ValidationFailurenet.sf.hibernateThrown from Validatable.validate() when an invariant was violated.
WrongClassExceptionnet.sf.hibernateThrown when Session.load() selects a row with the given primary key (identifier value) but the row's discriminator value specifies a subclass that is not assignable to the class requested by the user.
Search