home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / java / sql / BatchUpdateException.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  661 b   |  33 lines

  1. package java.sql;
  2.  
  3. public class BatchUpdateException extends SQLException {
  4.    private int[] updateCounts;
  5.  
  6.    public BatchUpdateException(String var1, String var2, int var3, int[] var4) {
  7.       super(var1, var2, var3);
  8.       this.updateCounts = var4;
  9.    }
  10.  
  11.    public BatchUpdateException(String var1, String var2, int[] var3) {
  12.       super(var1, var2);
  13.       this.updateCounts = var3;
  14.    }
  15.  
  16.    public BatchUpdateException(String var1, int[] var2) {
  17.       super(var1);
  18.       this.updateCounts = var2;
  19.    }
  20.  
  21.    public BatchUpdateException(int[] var1) {
  22.       this.updateCounts = var1;
  23.    }
  24.  
  25.    public BatchUpdateException() {
  26.       this.updateCounts = null;
  27.    }
  28.  
  29.    public int[] getUpdateCounts() {
  30.       return this.updateCounts;
  31.    }
  32. }
  33.