Skip to content

Commit

Permalink
add new bulk sql exception
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Feb 17, 2012
1 parent 23863ab commit 67d3f9d
Showing 1 changed file with 23 additions and 0 deletions.
@@ -0,0 +1,23 @@
package org.jumpmind.db.sql;

public class BulkSqlException extends SqlException {

private static final long serialVersionUID = 1L;

private int[] errors;

public BulkSqlException(int[] errors) {
super();
this.errors = errors;
}

public BulkSqlException(int[] errors, Exception ex) {
super(ex);
this.errors = errors;
}

public int[] getErrors() {
return errors;
}

}

0 comments on commit 67d3f9d

Please sign in to comment.