java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
javax.persistence.PersistenceException
javax.persistence.EntityNotFoundException
- All Implemented Interfaces:
Serializable
Thrown by the persistence provider when an entity reference obtained by
is accessed but the entity does not exist. Thrown when
is called and the
object no longer exists in the database.
Thrown when
is used with
pessimistic locking is used and the entity no longer exists in the database.
invalid reference
EntityManager.getReference
invalid reference
EntityManager.refresh
invalid reference
EntityManager.lock
The current transaction, if one is active, will be marked for rollback.
- Since:
- Java Persistence 1.0
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a newEntityNotFoundException
exception withnull
as its detail message.EntityNotFoundException
(String message) Constructs a newEntityNotFoundException
exception with the specified detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
EntityNotFoundException
public EntityNotFoundException()Constructs a newEntityNotFoundException
exception withnull
as its detail message. -
EntityNotFoundException
Constructs a newEntityNotFoundException
exception with the specified detail message.- Parameters:
message
- the detail message.
-