Something went wrong in the cache
base class for all HibernateD exceptions
Indicates access to unfetched data outside of a session context. For example, when an uninitialized proxy or collection is accessed after the session was closed.
An exception that usually occurs as a result of something screwy in the O-R mappings.
Thrown when the application calls Query.uniqueResult() and the query returned more than one result. Unlike all other Hibernate exceptions, this one is recoverable!
Thrown when the user tries to do something illegal with a deleted object.
An exception occurs when query result is expected but object is not found in DB.
Thrown when the (illegal) value of a property can not be persisted. There are two main causes: a property declared not-null="true" is null or an association references an unsaved transient instance
A problem occurred translating a Hibernate query to SQL due to invalid query syntax, etc.
Parameter invalid or not found in the query
Exception thrown when there is a syntax error in the HQL.
Thrown when the user calls a method of a Session that is in an inappropropriate state for the given call (for example, the the session is closed or disconnected).
Indicates that a transaction could not be begun, committed or rolled back.
Thrown when the user passes a transient instance to a Session method that expects a persistent instance.
Base class for HibernateD property types
Thrown when Hibernate could not resolve an object by id, especially when loading an association.
Lazy entity loader.
Lazy entity collection loader.
Wrapper around string, to distinguish between Null and NotNull fields: string is NotNull, String is Null -- same interface as in Nullable
HibernateD - Object-Relation Mapping for D programming language, with interface similar to Hibernate.
Hibernate documentation can be found here: http://hibernate.org/docs
Source file hibernated/type.d.
This module contains declarations of property type description classes.