Jakarta Persistence (JPA) Class

jakarta.persistence.PessimisticLockException

java.lang.Object
  java.lang.Throwable
    java.lang.Exception
      java.lang.RuntimeException
        jakarta.persistence.PersistenceException
          jakarta.persistence.PessimisticLockException
Implemented Interfaces:
Serializable

Thrown by the persistence provider when a pessimistic locking conflict occurs. This exception may be thrown as part of an API call, a flush or at commit time. The current transaction, if one is active, is marked for rollback.
Since:
Jakarta Persistence (JPA) 2.0

Public Constructors

Constructs a new PessimisticLockException exception with null as its detail message.
Since:
Jakarta Persistence (JPA) 1.0
PessimisticLockException(String message)
Constructs a new PessimisticLockException exception with the specified detail message.
Parameters:
message - the detail message.
Since:
Jakarta Persistence (JPA) 1.0
PessimisticLockException(String message, Throwable cause)
Constructs a new PessimisticLockException exception with the specified detail message and cause.
Parameters:
cause - the cause.
message - the detail message.
Since:
Jakarta Persistence (JPA) 1.0
PessimisticLockException(Throwable cause)
Constructs a new PessimisticLockException exception with the specified cause.
Parameters:
cause - the cause.
Since:
Jakarta Persistence (JPA) 1.0
Constructs a new PessimisticLockException exception with the specified entity.
Parameters:
entity - the entity.
Since:
Jakarta Persistence (JPA) 1.0
PessimisticLockException(String message, Throwable cause, Object entity)
Constructs a new PessimisticLockException exception with the specified detail message, cause, and entity.
Parameters:
cause - the cause.
message - the detail message.
entity - the entity.
Since:
Jakarta Persistence (JPA) 1.0

Public Instance Methods

Object getEntity()
Returns the entity that caused this exception.
Returns:
the entity..
Since:
Jakarta Persistence (JPA) 1.0

Additional JDK methods inherited from java.lang.Throwable

addSuppressed(Throwable), fillInStackTrace(), fillInStackTrace(int), getCause(), getLocalizedMessage(), getMessage(), getOurStackTrace(), getStackTrace(), getSuppressed(), initCause(Throwable), lockedPrintStackTrace(PrintStreamOrWriter), printEnclosedStackTrace(PrintStreamOrWriter,StackTraceElement~,String,String,Set), printStackTrace(), printStackTrace(PrintStream), printStackTrace(PrintStreamOrWriter), printStackTrace(PrintWriter), readObject(ObjectInputStream), setCause(Throwable), setStackTrace(StackTraceElement~), toString(), validateSuppressedExceptionsList(List), writeObject(ObjectOutputStream)

Additional JDK methods inherited from java.lang.Object

clone(), equals(Object), finalize(), getClass(), hashCode(), notify(), notifyAll(), wait(), wait(long), wait(long,int), wait0(long)