org.springframework.dao
Class CleanupFailureDataAccessException

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.CleanupFailureDataAccessException
All Implemented Interfaces:
Serializable

public class CleanupFailureDataAccessException
extends DataAccessException

Exception thrown when we couldn't cleanup after a data access operation, but the actual operation went OK.

For example, this exception or a subclass might be thrown if a JDBC Connection couldn't be closed after it had been used successfully.

Note that data access code might perform resources cleanup in a finally block and therefore log cleanup failure rather than rethrow it, to keep the original data access exception, if any.

Author:
Rod Johnson
See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.lang.RuntimeException
 
Constructor Summary
CleanupFailureDataAccessException(String msg, Throwable ex)
          Constructor for CleanupFailureDataAccessException.
 
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

CleanupFailureDataAccessException

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

Parameters:
msg - Message
ex - root cause from the underlying data access API, such as JDBC


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