Interface SQLExceptionHandler


public interface SQLExceptionHandler
A handler for SQL exceptions.
Version:
1.0
Author:
matt
  • Method Details

    • handleGetConnectionException

      void handleGetConnectionException(SQLException e)
      Handle an exception triggered when a connection cannot be obtained.
      Parameters:
      e - The exception to handle.
    • handleConnectionException

      void handleConnectionException(Connection conn, SQLException e)
      Handle an exception triggered on an active Connection.
      Parameters:
      conn - The Connection the exception occurred on.
      e - The exception.