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.ConcurrencyFailureException
- All Implemented Interfaces:
- Serializable
- Direct Known Subclasses:
- CannotAcquireLockException, CannotSerializeTransactionException, DeadlockLoserDataAccessException, OptimisticLockingFailureException
- public class ConcurrencyFailureException
- extends DataAccessException
Exception thrown on concurrency failure. This exception should be
sublassed to indicate the type of failure - optimistic locking,
failure to acquire lock, etc.
This exception will be thrown either by O/R mapping tools
or by custom DAO implementations.
- Since:
- 1.1
- Author:
- Thomas Risberg
- See Also:
- Serialized Form
ConcurrencyFailureException
public ConcurrencyFailureException(String msg)
- Constructor for ConcurrencyFailureException.
- Parameters:
msg
- message
ConcurrencyFailureException
public ConcurrencyFailureException(String msg,
Throwable ex)
- Constructor for ConcurrencyFailureException.
- Parameters:
msg
- messageex
- root cause from data access API in use
Copyright (C) 2003-2004 The Spring Framework Project.