com.darwinsys.sql.SQLRunnerErrorHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of darwinsys-api Show documentation
Show all versions of darwinsys-api Show documentation
Ian Darwin's assorted Java stuff,
assembled as an API.
package com.darwinsys.sql;
public interface SQLRunnerErrorHandler {
/**
* Called by SQLRunner to handle an error encountered while trying to execute
* a command.
* @param e The Exception thrown by Statement.execute().
*/
public void handleError(Exception e);
}