home *** CD-ROM | disk | FTP | other *** search
- package java.sql;
-
- public class BatchUpdateException extends SQLException {
- private int[] updateCounts;
-
- public BatchUpdateException(String var1, String var2, int var3, int[] var4) {
- super(var1, var2, var3);
- this.updateCounts = var4;
- }
-
- public BatchUpdateException(String var1, String var2, int[] var3) {
- super(var1, var2);
- this.updateCounts = var3;
- }
-
- public BatchUpdateException(String var1, int[] var2) {
- super(var1);
- this.updateCounts = var2;
- }
-
- public BatchUpdateException(int[] var1) {
- this.updateCounts = var1;
- }
-
- public BatchUpdateException() {
- this.updateCounts = null;
- }
-
- public int[] getUpdateCounts() {
- return this.updateCounts;
- }
- }
-