org.springframework.dao
Class ConcurrencyFailureException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.lang.RuntimeException
              extended byorg.springframework.core.NestedRuntimeException
                  extended byorg.springframework.dao.DataAccessException
                      extended byorg.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

Field Summary
 
Fields inherited from class java.lang.RuntimeException
 
Constructor Summary
ConcurrencyFailureException(String msg)
          Constructor for ConcurrencyFailureException.
ConcurrencyFailureException(String msg, Throwable ex)
          Constructor for ConcurrencyFailureException.
 
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getCause, getMessage, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getStackTrace, initCause, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ConcurrencyFailureException

public ConcurrencyFailureException(String msg)
Constructor for ConcurrencyFailureException.

Parameters:
msg - message

ConcurrencyFailureException

public ConcurrencyFailureException(String msg,
                                   Throwable ex)
Constructor for ConcurrencyFailureException.

Parameters:
msg - message
ex - root cause from data access API in use


Copyright (C) 2003-2004 The Spring Framework Project.