Package javax.persistence
Class EntityNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- javax.persistence.PersistenceException
-
- javax.persistence.EntityNotFoundException
-
- All Implemented Interfaces:
java.io.Serializable
public class EntityNotFoundException extends PersistenceException
Thrown by the persistence provider when an entity reference obtained byEntityManager.getReference
is accessed but the entity does not exist. Thrown whenEntityManager.refresh
is called and the object no longer exists in the database. Thrown whenEntityManager.lock
is used with pessimistic locking is used and the entity no longer exists in the database.The current transaction, if one is active and the persistence context has been joined to it, will be marked for rollback.
- See Also:
EntityManager.getReference(Class,Object)
,EntityManager.refresh(Object)
,EntityManager.refresh(Object, LockModeType)
,EntityManager.refresh(Object, java.util.Map)
,EntityManager.refresh(Object, LockModeType, java.util.Map)
,EntityManager.lock(Object, LockModeType)
,EntityManager.lock(Object, LockModeType, java.util.Map)
, Serialized Form- Since:
- 1.0
-
-
Constructor Summary
Constructors Constructor Description EntityNotFoundException()
Constructs a newEntityNotFoundException
exception withnull
as its detail message.EntityNotFoundException(java.lang.String message)
Constructs a newEntityNotFoundException
exception with the specified detail message.
-
-
-
Constructor Detail
-
EntityNotFoundException
public EntityNotFoundException()
Constructs a newEntityNotFoundException
exception withnull
as its detail message.
-
EntityNotFoundException
public EntityNotFoundException(java.lang.String message)
Constructs a newEntityNotFoundException
exception with the specified detail message.- Parameters:
message
- the detail message.
-
-