src/jdk.incubator.adba/share/classes/jdk/incubator/sql2/SqlException.java
branchJDK-8188051-branch
changeset 56797 fb523d4d9185
parent 56475 e700edfac7ad
child 56997 c9cbac2979fb
equal deleted inserted replaced
56796:69b384805d61 56797:fb523d4d9185
    70    * based.
    70    * based.
    71    */
    71    */
    72   private final int position;
    72   private final int position;
    73   
    73   
    74   // Constructors
    74   // Constructors
       
    75   
       
    76   public SqlException(Throwable ex) {
       
    77     super(ex);
       
    78     this.sqlState = null;
       
    79     this.vendorCode = -1;
       
    80     this.sqlString = null;
       
    81     this.position = -1;
       
    82   }
    75 
    83 
    76   /**
    84   /**
    77    *
    85    *
    78    * @param message
    86    * @param message
    79    * @param cause
    87    * @param cause