Uses of Class
org.hibernate.UnresolvableObjectException
-
Packages that use UnresolvableObjectException Package Description org.hibernate This package defines the central Hibernate APIs, beginning withSessionFactory
, which represents an instance of Hibernate at runtime and is the source of new instances ofSession
andStatelessSession
, the most important APIs exposing persistence-related operations for entities. -
-
Uses of UnresolvableObjectException in org.hibernate
Subclasses of UnresolvableObjectException in org.hibernate Modifier and Type Class Description class
ObjectDeletedException
Thrown when the user tries to do something illegal with a deleted object.class
ObjectNotFoundException
Thrown whenEntityManager.find(Class, Object)
fails to select a row with the given primary key (identifier value).Methods in org.hibernate that throw UnresolvableObjectException Modifier and Type Method Description static void
UnresolvableObjectException. throwIfNull(Object entity, Object identifier, String entityName)
Factory method for building and throwing anUnresolvableObjectException
if the entity is null.
-