Package org.springframework.dao
Class RecoverableDataAccessException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.dao.DataAccessException
org.springframework.dao.RecoverableDataAccessException
- All Implemented Interfaces:
- Serializable
Data access exception thrown when a previously failed operation might be able
 to succeed if the application performs some recovery steps and retries the entire
 transaction or in the case of a distributed transaction, the transaction branch.
 At a minimum, the recovery operation must include closing the current connection
 and getting a new connection.
- Since:
- 2.5
- Author:
- Thomas Risberg
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionConstructor for RecoverableDataAccessException.RecoverableDataAccessException(String msg, Throwable cause) Constructor for RecoverableDataAccessException.
- 
Method SummaryMethods inherited from class org.springframework.core.NestedRuntimeExceptioncontains, getMostSpecificCause, getRootCauseMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
RecoverableDataAccessExceptionConstructor for RecoverableDataAccessException.- Parameters:
- msg- the detail message
 
- 
RecoverableDataAccessExceptionConstructor for RecoverableDataAccessException.- Parameters:
- msg- the detail message
- cause- the root cause (usually from using an underlying data access API such as JDBC)
 
 
-