Package org.springframework.dao
Class ConcurrencyFailureException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.dao.DataAccessException
org.springframework.dao.TransientDataAccessException
org.springframework.dao.ConcurrencyFailureException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
OptimisticLockingFailureException
,PessimisticLockingFailureException
Exception thrown on various data access concurrency failures.
This exception provides subclasses for specific types of failure, in particular optimistic locking versus pessimistic locking.
- Since:
- 1.1
- Author:
- Thomas Risberg
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructor for ConcurrencyFailureException.ConcurrencyFailureException
(String msg, Throwable cause) Constructor for ConcurrencyFailureException. -
Method Summary
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getMostSpecificCause, getRootCause
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ConcurrencyFailureException
Constructor for ConcurrencyFailureException.- Parameters:
msg
- the detail message
-
ConcurrencyFailureException
Constructor for ConcurrencyFailureException.- Parameters:
msg
- the detail messagecause
- the root cause from the data access API in use
-