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 SummaryConstructorsConstructorDescriptionConstructs a newEntityNotFoundExceptionexception withnullas its detail message.EntityNotFoundException(Exception cause) Constructs a newEntityNotFoundExceptionexception withnullas its detail message.EntityNotFoundException(String message) Constructs a newEntityNotFoundExceptionexception with the specified detail message.EntityNotFoundException(String message, Exception cause) Constructs a newEntityNotFoundExceptionexception with the specified detail message.
- 
Method SummaryMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
EntityNotFoundExceptionpublic EntityNotFoundException()Constructs a newEntityNotFoundExceptionexception withnullas its detail message.
- 
EntityNotFoundExceptionConstructs a newEntityNotFoundExceptionexception withnullas its detail message.
- 
EntityNotFoundExceptionConstructs a newEntityNotFoundExceptionexception with the specified detail message.- Parameters:
- message- the detail message.
 
- 
EntityNotFoundException
 
-