| workbench.interfaces.JobErrorHandler
All known Subclasses: workbench.gui.sql.SqlPanel, workbench.gui.sql.DwPanel,
JobErrorHandler | public interface JobErrorHandler (Code) | | author: support@sql-workbench.net |
JOB_ABORT | final int JOB_ABORT(Code) | | |
JOB_CONTINUE | final int JOB_CONTINUE(Code) | | |
JOB_IGNORE_ALL | final int JOB_IGNORE_ALL(Code) | | |
fatalError | void fatalError(String msg)(Code) | | A fatal error has occured and should be displayed to the user. The backend worker
will stop its process after calling this.
|
getActionOnError | int getActionOnError(int errorRow, String errorColumn, String data, String errorMessage)(Code) | | Callback function if an error occurs.
Parameters: errorRow - the row in which the error occurred Parameters: errorColumn - the column in which the error occurred (null if there was a problem in reading the row) Parameters: data - the data which was processed (if errorColumn != null the column value, else the row value) Parameters: errorMessage - the errorMessage from the Job JOB_CONTINUE the job should ignore the error (if possible and continue) or JOB_ABORT |
|
|