类 CleanupFailureDataAccessException

  • 所有已实现的接口:
    Serializable

    public class CleanupFailureDataAccessException
    extends NonTransientDataAccessException
    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.

    作者:
    Rod Johnson
    另请参阅:
    序列化表格
    • 构造器详细资料

      • CleanupFailureDataAccessException

        public CleanupFailureDataAccessException​(String msg,
                                                 Throwable cause)
        Constructor for CleanupFailureDataAccessException.
        参数:
        msg - the detail message
        cause - the root cause from the underlying data access API, such as JDBC