Class PessimisticLockingFailureException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
CannotAcquireLockException, CannotSerializeTransactionException, DeadlockLoserDataAccessException

public class PessimisticLockingFailureException extends ConcurrencyFailureException
Exception thrown on a pessimistic locking violation. Thrown by Spring's SQLException translation mechanism if a corresponding database error is encountered.

Serves as a superclass for more specific exceptions, e.g. CannotAcquireLockException. However, it is generally recommended to handle PessimisticLockingFailureException itself instead of relying on specific exception subclasses.

Since:
1.2
Author:
Thomas Risberg
See Also:
  • Constructor Details

    • PessimisticLockingFailureException

      public PessimisticLockingFailureException(String msg)
      Constructor for PessimisticLockingFailureException.
      Parameters:
      msg - the detail message
    • PessimisticLockingFailureException

      public PessimisticLockingFailureException(String msg, Throwable cause)
      Constructor for PessimisticLockingFailureException.
      Parameters:
      msg - the detail message
      cause - the root cause from the data access API in use