Class EntityNotFoundException

All Implemented Interfaces:
Serializable

public class EntityNotFoundException extends PersistenceException
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 Details

    • EntityNotFoundException

      public EntityNotFoundException()
      Constructs a new EntityNotFoundException exception with null as its detail message.
    • EntityNotFoundException

      public EntityNotFoundException(Exception cause)
      Constructs a new EntityNotFoundException exception with null as its detail message.
    • EntityNotFoundException

      public EntityNotFoundException(String message)
      Constructs a new EntityNotFoundException exception with the specified detail message.
      Parameters:
      message - the detail message.
    • EntityNotFoundException

      public EntityNotFoundException(String message, Exception cause)
      Constructs a new EntityNotFoundException exception with the specified detail message.
      Parameters:
      message - the detail message.