java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
jakarta.persistence.PersistenceException
jakarta.persistence.EntityNotFoundException
- All Implemented Interfaces:
Serializable
Thrown by the persistence provider when an entity reference obtained by
EntityManager.getReference
is accessed but the entity does not exist. Thrown when
EntityManager.refresh
is called and the
object no longer exists in the database.
Thrown when EntityManager.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.
- Since:
- 1.0
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs a newEntityNotFoundException
exception withnull
as its detail message.EntityNotFoundException
(Exception cause) Constructs a newEntityNotFoundException
exception withnull
as its detail message.EntityNotFoundException
(String message) Constructs a newEntityNotFoundException
exception with the specified detail message.EntityNotFoundException
(String message, Exception cause) 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 withnull
as its detail message. -
EntityNotFoundException
Constructs a newEntityNotFoundException
exception with the specified detail message.- Parameters:
message
- the detail message.
-
EntityNotFoundException
Constructs a newEntityNotFoundException
exception with the specified detail message.- Parameters:
message
- the detail message.
-