public class java.sql.SQLException extends java.lang.Exception implements java.lang.Iterable<java.lang.Throwable>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: java.sql.SQLException
  super_class: java.lang.Exception
{
  private java.lang.String SQLState;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private int vendorCode;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private volatile java.sql.SQLException next;
    descriptor: Ljava/sql/SQLException;
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private static final java.util.concurrent.atomic.AtomicReferenceFieldUpdater<java.sql.SQLException, java.sql.SQLException> nextUpdater;
    descriptor: Ljava/util/concurrent/atomic/AtomicReferenceFieldUpdater;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Signature: Ljava/util/concurrent/atomic/AtomicReferenceFieldUpdater<Ljava/sql/SQLException;Ljava/sql/SQLException;>;

  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 2135244094396331484

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 374
            ldc Ljava/sql/SQLException;
            ldc Ljava/sql/SQLException;
            ldc "next"
            invokestatic java.util.concurrent.atomic.AtomicReferenceFieldUpdater.newUpdater:(Ljava/lang/Class;Ljava/lang/Class;Ljava/lang/String;)Ljava/util/concurrent/atomic/AtomicReferenceFieldUpdater;
         1: .line 373
            putstatic java.sql.SQLException.nextUpdater:Ljava/util/concurrent/atomic/AtomicReferenceFieldUpdater;
         2: .line 376
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(java.lang.String, java.lang.String, int);
    descriptor: (Ljava/lang/String;Ljava/lang/String;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // java.sql.SQLException this
        start local 1 // java.lang.String reason
        start local 2 // java.lang.String SQLState
        start local 3 // int vendorCode
         0: .line 72
            aload 0 /* this */
            aload 1 /* reason */
            invokespecial java.lang.Exception.<init>:(Ljava/lang/String;)V
         1: .line 73
            aload 0 /* this */
            aload 2 /* SQLState */
            putfield java.sql.SQLException.SQLState:Ljava/lang/String;
         2: .line 74
            aload 0 /* this */
            iload 3 /* vendorCode */
            putfield java.sql.SQLException.vendorCode:I
         3: .line 75
            aload 0 /* this */
            instanceof java.sql.SQLWarning
            ifne 9
         4: .line 76
            invokestatic java.sql.DriverManager.getLogWriter:()Ljava/io/PrintWriter;
            ifnull 9
         5: .line 77
            new java.lang.StringBuilder
            dup
            ldc "SQLState("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* SQLState */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         6: .line 78
            ldc ") vendor code("
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 3 /* vendorCode */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         7: .line 77
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic java.sql.DriverManager.println:(Ljava/lang/String;)V
         8: .line 79
            aload 0 /* this */
            invokestatic java.sql.DriverManager.getLogWriter:()Ljava/io/PrintWriter;
            invokevirtual java.sql.SQLException.printStackTrace:(Ljava/io/PrintWriter;)V
         9: .line 82
      StackMap locals: java.sql.SQLException java.lang.String java.lang.String int
      StackMap stack:
            return
        end local 3 // int vendorCode
        end local 2 // java.lang.String SQLState
        end local 1 // java.lang.String reason
        end local 0 // java.sql.SQLException this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   10     0        this  Ljava/sql/SQLException;
            0   10     1      reason  Ljava/lang/String;
            0   10     2    SQLState  Ljava/lang/String;
            0   10     3  vendorCode  I
    MethodParameters:
            Name  Flags
      reason      
      SQLState    
      vendorCode  

  public void <init>(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // java.sql.SQLException this
        start local 1 // java.lang.String reason
        start local 2 // java.lang.String SQLState
         0: .line 98
            aload 0 /* this */
            aload 1 /* reason */
            invokespecial java.lang.Exception.<init>:(Ljava/lang/String;)V
         1: .line 99
            aload 0 /* this */
            aload 2 /* SQLState */
            putfield java.sql.SQLException.SQLState:Ljava/lang/String;
         2: .line 100
            aload 0 /* this */
            iconst_0
            putfield java.sql.SQLException.vendorCode:I
         3: .line 101
            aload 0 /* this */
            instanceof java.sql.SQLWarning
            ifne 7
         4: .line 102
            invokestatic java.sql.DriverManager.getLogWriter:()Ljava/io/PrintWriter;
            ifnull 7
         5: .line 103
            aload 0 /* this */
            invokestatic java.sql.DriverManager.getLogWriter:()Ljava/io/PrintWriter;
            invokevirtual java.sql.SQLException.printStackTrace:(Ljava/io/PrintWriter;)V
         6: .line 104
            new java.lang.StringBuilder
            dup
            ldc "SQLException: SQLState("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* SQLState */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic java.sql.DriverManager.println:(Ljava/lang/String;)V
         7: .line 107
      StackMap locals: java.sql.SQLException java.lang.String java.lang.String
      StackMap stack:
            return
        end local 2 // java.lang.String SQLState
        end local 1 // java.lang.String reason
        end local 0 // java.sql.SQLException this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Ljava/sql/SQLException;
            0    8     1    reason  Ljava/lang/String;
            0    8     2  SQLState  Ljava/lang/String;
    MethodParameters:
          Name  Flags
      reason    
      SQLState  

  public void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.sql.SQLException this
        start local 1 // java.lang.String reason
         0: .line 121
            aload 0 /* this */
            aload 1 /* reason */
            invokespecial java.lang.Exception.<init>:(Ljava/lang/String;)V
         1: .line 122
            aload 0 /* this */
            aconst_null
            putfield java.sql.SQLException.SQLState:Ljava/lang/String;
         2: .line 123
            aload 0 /* this */
            iconst_0
            putfield java.sql.SQLException.vendorCode:I
         3: .line 124
            aload 0 /* this */
            instanceof java.sql.SQLWarning
            ifne 6
         4: .line 125
            invokestatic java.sql.DriverManager.getLogWriter:()Ljava/io/PrintWriter;
            ifnull 6
         5: .line 126
            aload 0 /* this */
            invokestatic java.sql.DriverManager.getLogWriter:()Ljava/io/PrintWriter;
            invokevirtual java.sql.SQLException.printStackTrace:(Ljava/io/PrintWriter;)V
         6: .line 129
      StackMap locals: java.sql.SQLException java.lang.String
      StackMap stack:
            return
        end local 1 // java.lang.String reason
        end local 0 // java.sql.SQLException this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Ljava/sql/SQLException;
            0    7     1  reason  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      reason  

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.sql.SQLException this
         0: .line 142
            aload 0 /* this */
            invokespecial java.lang.Exception.<init>:()V
         1: .line 143
            aload 0 /* this */
            aconst_null
            putfield java.sql.SQLException.SQLState:Ljava/lang/String;
         2: .line 144
            aload 0 /* this */
            iconst_0
            putfield java.sql.SQLException.vendorCode:I
         3: .line 145
            aload 0 /* this */
            instanceof java.sql.SQLWarning
            ifne 6
         4: .line 146
            invokestatic java.sql.DriverManager.getLogWriter:()Ljava/io/PrintWriter;
            ifnull 6
         5: .line 147
            aload 0 /* this */
            invokestatic java.sql.DriverManager.getLogWriter:()Ljava/io/PrintWriter;
            invokevirtual java.sql.SQLException.printStackTrace:(Ljava/io/PrintWriter;)V
         6: .line 150
      StackMap locals: java.sql.SQLException
      StackMap stack:
            return
        end local 0 // java.sql.SQLException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Ljava/sql/SQLException;

  public void <init>(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.sql.SQLException this
        start local 1 // java.lang.Throwable cause
         0: .line 167
            aload 0 /* this */
            aload 1 /* cause */
            invokespecial java.lang.Exception.<init>:(Ljava/lang/Throwable;)V
         1: .line 169
            aload 0 /* this */
            instanceof java.sql.SQLWarning
            ifne 4
         2: .line 170
            invokestatic java.sql.DriverManager.getLogWriter:()Ljava/io/PrintWriter;
            ifnull 4
         3: .line 171
            aload 0 /* this */
            invokestatic java.sql.DriverManager.getLogWriter:()Ljava/io/PrintWriter;
            invokevirtual java.sql.SQLException.printStackTrace:(Ljava/io/PrintWriter;)V
         4: .line 174
      StackMap locals: java.sql.SQLException java.lang.Throwable
      StackMap stack:
            return
        end local 1 // java.lang.Throwable cause
        end local 0 // java.sql.SQLException this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Ljava/sql/SQLException;
            0    5     1  cause  Ljava/lang/Throwable;
    MethodParameters:
       Name  Flags
      cause  

  public void <init>(java.lang.String, java.lang.Throwable);
    descriptor: (Ljava/lang/String;Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // java.sql.SQLException this
        start local 1 // java.lang.String reason
        start local 2 // java.lang.Throwable cause
         0: .line 189
            aload 0 /* this */
            aload 1 /* reason */
            aload 2 /* cause */
            invokespecial java.lang.Exception.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
         1: .line 191
            aload 0 /* this */
            instanceof java.sql.SQLWarning
            ifne 4
         2: .line 192
            invokestatic java.sql.DriverManager.getLogWriter:()Ljava/io/PrintWriter;
            ifnull 4
         3: .line 193
            aload 0 /* this */
            invokestatic java.sql.DriverManager.getLogWriter:()Ljava/io/PrintWriter;
            invokevirtual java.sql.SQLException.printStackTrace:(Ljava/io/PrintWriter;)V
         4: .line 196
      StackMap locals: java.sql.SQLException java.lang.String java.lang.Throwable
      StackMap stack:
            return
        end local 2 // java.lang.Throwable cause
        end local 1 // java.lang.String reason
        end local 0 // java.sql.SQLException this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Ljava/sql/SQLException;
            0    5     1  reason  Ljava/lang/String;
            0    5     2   cause  Ljava/lang/Throwable;
    MethodParameters:
        Name  Flags
      reason  
      cause   

  public void <init>(java.lang.String, java.lang.String, java.lang.Throwable);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // java.sql.SQLException this
        start local 1 // java.lang.String reason
        start local 2 // java.lang.String sqlState
        start local 3 // java.lang.Throwable cause
         0: .line 212
            aload 0 /* this */
            aload 1 /* reason */
            aload 3 /* cause */
            invokespecial java.lang.Exception.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
         1: .line 214
            aload 0 /* this */
            aload 2 /* sqlState */
            putfield java.sql.SQLException.SQLState:Ljava/lang/String;
         2: .line 215
            aload 0 /* this */
            iconst_0
            putfield java.sql.SQLException.vendorCode:I
         3: .line 216
            aload 0 /* this */
            instanceof java.sql.SQLWarning
            ifne 7
         4: .line 217
            invokestatic java.sql.DriverManager.getLogWriter:()Ljava/io/PrintWriter;
            ifnull 7
         5: .line 218
            aload 0 /* this */
            invokestatic java.sql.DriverManager.getLogWriter:()Ljava/io/PrintWriter;
            invokevirtual java.sql.SQLException.printStackTrace:(Ljava/io/PrintWriter;)V
         6: .line 219
            new java.lang.StringBuilder
            dup
            ldc "SQLState("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield java.sql.SQLException.SQLState:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic java.sql.DriverManager.println:(Ljava/lang/String;)V
         7: .line 222
      StackMap locals: java.sql.SQLException java.lang.String java.lang.String java.lang.Throwable
      StackMap stack:
            return
        end local 3 // java.lang.Throwable cause
        end local 2 // java.lang.String sqlState
        end local 1 // java.lang.String reason
        end local 0 // java.sql.SQLException this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Ljava/sql/SQLException;
            0    8     1    reason  Ljava/lang/String;
            0    8     2  sqlState  Ljava/lang/String;
            0    8     3     cause  Ljava/lang/Throwable;
    MethodParameters:
          Name  Flags
      reason    
      sqlState  
      cause     

  public void <init>(java.lang.String, java.lang.String, int, java.lang.Throwable);
    descriptor: (Ljava/lang/String;Ljava/lang/String;ILjava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=5
        start local 0 // java.sql.SQLException this
        start local 1 // java.lang.String reason
        start local 2 // java.lang.String sqlState
        start local 3 // int vendorCode
        start local 4 // java.lang.Throwable cause
         0: .line 238
            aload 0 /* this */
            aload 1 /* reason */
            aload 4 /* cause */
            invokespecial java.lang.Exception.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
         1: .line 240
            aload 0 /* this */
            aload 2 /* sqlState */
            putfield java.sql.SQLException.SQLState:Ljava/lang/String;
         2: .line 241
            aload 0 /* this */
            iload 3 /* vendorCode */
            putfield java.sql.SQLException.vendorCode:I
         3: .line 242
            aload 0 /* this */
            instanceof java.sql.SQLWarning
            ifne 9
         4: .line 243
            invokestatic java.sql.DriverManager.getLogWriter:()Ljava/io/PrintWriter;
            ifnull 9
         5: .line 244
            new java.lang.StringBuilder
            dup
            ldc "SQLState("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield java.sql.SQLException.SQLState:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         6: .line 245
            ldc ") vendor code("
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 3 /* vendorCode */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         7: .line 244
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic java.sql.DriverManager.println:(Ljava/lang/String;)V
         8: .line 246
            aload 0 /* this */
            invokestatic java.sql.DriverManager.getLogWriter:()Ljava/io/PrintWriter;
            invokevirtual java.sql.SQLException.printStackTrace:(Ljava/io/PrintWriter;)V
         9: .line 249
      StackMap locals: java.sql.SQLException java.lang.String java.lang.String int java.lang.Throwable
      StackMap stack:
            return
        end local 4 // java.lang.Throwable cause
        end local 3 // int vendorCode
        end local 2 // java.lang.String sqlState
        end local 1 // java.lang.String reason
        end local 0 // java.sql.SQLException this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   10     0        this  Ljava/sql/SQLException;
            0   10     1      reason  Ljava/lang/String;
            0   10     2    sqlState  Ljava/lang/String;
            0   10     3  vendorCode  I
            0   10     4       cause  Ljava/lang/Throwable;
    MethodParameters:
            Name  Flags
      reason      
      sqlState    
      vendorCode  
      cause       

  public java.lang.String getSQLState();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.sql.SQLException this
         0: .line 257
            aload 0 /* this */
            getfield java.sql.SQLException.SQLState:Ljava/lang/String;
            areturn
        end local 0 // java.sql.SQLException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/sql/SQLException;

  public int getErrorCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.sql.SQLException this
         0: .line 267
            aload 0 /* this */
            getfield java.sql.SQLException.vendorCode:I
            ireturn
        end local 0 // java.sql.SQLException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/sql/SQLException;

  public java.sql.SQLException getNextException();
    descriptor: ()Ljava/sql/SQLException;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.sql.SQLException this
         0: .line 279
            aload 0 /* this */
            getfield java.sql.SQLException.next:Ljava/sql/SQLException;
            areturn
        end local 0 // java.sql.SQLException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/sql/SQLException;

  public void setNextException(java.sql.SQLException);
    descriptor: (Ljava/sql/SQLException;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // java.sql.SQLException this
        start local 1 // java.sql.SQLException ex
         0: .line 291
            aload 0 /* this */
            astore 2 /* current */
        start local 2 // java.sql.SQLException current
         1: .line 293
      StackMap locals: java.sql.SQLException
      StackMap stack:
            aload 2 /* current */
            getfield java.sql.SQLException.next:Ljava/sql/SQLException;
            astore 3 /* next */
        start local 3 // java.sql.SQLException next
         2: .line 294
            aload 3 /* next */
            ifnull 5
         3: .line 295
            aload 3 /* next */
            astore 2 /* current */
         4: .line 296
            goto 1
         5: .line 299
      StackMap locals: java.sql.SQLException
      StackMap stack:
            getstatic java.sql.SQLException.nextUpdater:Ljava/util/concurrent/atomic/AtomicReferenceFieldUpdater;
            aload 2 /* current */
            aconst_null
            aload 1 /* ex */
            invokevirtual java.util.concurrent.atomic.AtomicReferenceFieldUpdater.compareAndSet:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 7
         6: .line 300
            return
         7: .line 302
      StackMap locals:
      StackMap stack:
            aload 2 /* current */
            getfield java.sql.SQLException.next:Ljava/sql/SQLException;
            astore 2 /* current */
        end local 3 // java.sql.SQLException next
         8: .line 292
            goto 1
        end local 2 // java.sql.SQLException current
        end local 1 // java.sql.SQLException ex
        end local 0 // java.sql.SQLException this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Ljava/sql/SQLException;
            0    9     1       ex  Ljava/sql/SQLException;
            1    9     2  current  Ljava/sql/SQLException;
            2    8     3     next  Ljava/sql/SQLException;
    MethodParameters:
      Name  Flags
      ex    

  public java.util.Iterator<java.lang.Throwable> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.sql.SQLException this
         0: .line 318
            new java.sql.SQLException$1
            dup
            aload 0 /* this */
            invokespecial java.sql.SQLException$1.<init>:(Ljava/sql/SQLException;)V
            areturn
        end local 0 // java.sql.SQLException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/sql/SQLException;
    Signature: ()Ljava/util/Iterator<Ljava/lang/Throwable;>;
}
Signature: Ljava/lang/Exception;Ljava/lang/Iterable<Ljava/lang/Throwable;>;
SourceFile: "SQLException.java"
NestMembers:
  java.sql.SQLException$1
InnerClasses:
  java.sql.SQLException$1