public class com.sun.tools.classfile.Exceptions_attribute extends com.sun.tools.classfile.Attribute
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.sun.tools.classfile.Exceptions_attribute
  super_class: com.sun.tools.classfile.Attribute
{
  public final int number_of_exceptions;
    descriptor: I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

  public final int[] exception_index_table;
    descriptor: [I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

  void <init>(com.sun.tools.classfile.ClassReader, int, int);
    descriptor: (Lcom/sun/tools/classfile/ClassReader;II)V
    flags: (0x0000) 
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // com.sun.tools.classfile.Exceptions_attribute this
        start local 1 // com.sun.tools.classfile.ClassReader cr
        start local 2 // int name_index
        start local 3 // int length
         0: .line 40
            aload 0 /* this */
            iload 2 /* name_index */
            iload 3 /* length */
            invokespecial com.sun.tools.classfile.Attribute.<init>:(II)V
         1: .line 41
            aload 0 /* this */
            aload 1 /* cr */
            invokevirtual com.sun.tools.classfile.ClassReader.readUnsignedShort:()I
            putfield com.sun.tools.classfile.Exceptions_attribute.number_of_exceptions:I
         2: .line 42
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.tools.classfile.Exceptions_attribute.number_of_exceptions:I
            newarray 10
            putfield com.sun.tools.classfile.Exceptions_attribute.exception_index_table:[I
         3: .line 43
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         4: goto 7
         5: .line 44
      StackMap locals: com.sun.tools.classfile.Exceptions_attribute com.sun.tools.classfile.ClassReader int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.tools.classfile.Exceptions_attribute.exception_index_table:[I
            iload 4 /* i */
            aload 1 /* cr */
            invokevirtual com.sun.tools.classfile.ClassReader.readUnsignedShort:()I
            iastore
         6: .line 43
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 4 /* i */
            aload 0 /* this */
            getfield com.sun.tools.classfile.Exceptions_attribute.number_of_exceptions:I
            if_icmplt 5
        end local 4 // int i
         8: .line 45
            return
        end local 3 // int length
        end local 2 // int name_index
        end local 1 // com.sun.tools.classfile.ClassReader cr
        end local 0 // com.sun.tools.classfile.Exceptions_attribute this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    9     0        this  Lcom/sun/tools/classfile/Exceptions_attribute;
            0    9     1          cr  Lcom/sun/tools/classfile/ClassReader;
            0    9     2  name_index  I
            0    9     3      length  I
            4    8     4           i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
            Name  Flags
      cr          
      name_index  
      length      

  public void <init>(com.sun.tools.classfile.ConstantPool, int[]);
    descriptor: (Lcom/sun/tools/classfile/ConstantPool;[I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.sun.tools.classfile.Exceptions_attribute this
        start local 1 // com.sun.tools.classfile.ConstantPool constant_pool
        start local 2 // int[] exception_index_table
         0: .line 49
            aload 0 /* this */
            aload 1 /* constant_pool */
            ldc "Exceptions"
            invokevirtual com.sun.tools.classfile.ConstantPool.getUTF8Index:(Ljava/lang/String;)I
            aload 2 /* exception_index_table */
            invokespecial com.sun.tools.classfile.Exceptions_attribute.<init>:(I[I)V
         1: .line 50
            return
        end local 2 // int[] exception_index_table
        end local 1 // com.sun.tools.classfile.ConstantPool constant_pool
        end local 0 // com.sun.tools.classfile.Exceptions_attribute this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    2     0                   this  Lcom/sun/tools/classfile/Exceptions_attribute;
            0    2     1          constant_pool  Lcom/sun/tools/classfile/ConstantPool;
            0    2     2  exception_index_table  [I
    Exceptions:
      throws com.sun.tools.classfile.ConstantPoolException
    MethodParameters:
                       Name  Flags
      constant_pool          
      exception_index_table  

  public void <init>(int, int[]);
    descriptor: (I[I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // com.sun.tools.classfile.Exceptions_attribute this
        start local 1 // int name_index
        start local 2 // int[] exception_index_table
         0: .line 53
            aload 0 /* this */
            iload 1 /* name_index */
            iconst_2
            iconst_2
            aload 2 /* exception_index_table */
            arraylength
            imul
            iadd
            invokespecial com.sun.tools.classfile.Attribute.<init>:(II)V
         1: .line 54
            aload 0 /* this */
            aload 2 /* exception_index_table */
            arraylength
            putfield com.sun.tools.classfile.Exceptions_attribute.number_of_exceptions:I
         2: .line 55
            aload 0 /* this */
            aload 2 /* exception_index_table */
            putfield com.sun.tools.classfile.Exceptions_attribute.exception_index_table:[I
         3: .line 56
            return
        end local 2 // int[] exception_index_table
        end local 1 // int name_index
        end local 0 // com.sun.tools.classfile.Exceptions_attribute this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    4     0                   this  Lcom/sun/tools/classfile/Exceptions_attribute;
            0    4     1             name_index  I
            0    4     2  exception_index_table  [I
    MethodParameters:
                       Name  Flags
      name_index             
      exception_index_table  

  public java.lang.String getException(int, com.sun.tools.classfile.ConstantPool);
    descriptor: (ILcom/sun/tools/classfile/ConstantPool;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // com.sun.tools.classfile.Exceptions_attribute this
        start local 1 // int index
        start local 2 // com.sun.tools.classfile.ConstantPool constant_pool
         0: .line 59
            aload 0 /* this */
            getfield com.sun.tools.classfile.Exceptions_attribute.exception_index_table:[I
            iload 1 /* index */
            iaload
            istore 3 /* exception_index */
        start local 3 // int exception_index
         1: .line 60
            aload 2 /* constant_pool */
            iload 3 /* exception_index */
            invokevirtual com.sun.tools.classfile.ConstantPool.getClassInfo:(I)Lcom/sun/tools/classfile/ConstantPool$CONSTANT_Class_info;
            invokevirtual com.sun.tools.classfile.ConstantPool$CONSTANT_Class_info.getName:()Ljava/lang/String;
            areturn
        end local 3 // int exception_index
        end local 2 // com.sun.tools.classfile.ConstantPool constant_pool
        end local 1 // int index
        end local 0 // com.sun.tools.classfile.Exceptions_attribute this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lcom/sun/tools/classfile/Exceptions_attribute;
            0    2     1            index  I
            0    2     2    constant_pool  Lcom/sun/tools/classfile/ConstantPool;
            1    2     3  exception_index  I
    Exceptions:
      throws com.sun.tools.classfile.ConstantPoolException
    MethodParameters:
               Name  Flags
      index          
      constant_pool  

  public <R, D> R accept(com.sun.tools.classfile.Attribute$Visitor<R, D>, );
    descriptor: (Lcom/sun/tools/classfile/Attribute$Visitor;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.sun.tools.classfile.Exceptions_attribute this
        start local 1 // com.sun.tools.classfile.Attribute$Visitor visitor
        start local 2 // java.lang.Object data
         0: .line 64
            aload 1 /* visitor */
            aload 0 /* this */
            aload 2 /* data */
            invokeinterface com.sun.tools.classfile.Attribute$Visitor.visitExceptions:(Lcom/sun/tools/classfile/Exceptions_attribute;Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 2 // java.lang.Object data
        end local 1 // com.sun.tools.classfile.Attribute$Visitor visitor
        end local 0 // com.sun.tools.classfile.Exceptions_attribute this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lcom/sun/tools/classfile/Exceptions_attribute;
            0    1     1  visitor  Lcom/sun/tools/classfile/Attribute$Visitor<TR;TD;>;
            0    1     2     data  TD;
    Signature: <R:Ljava/lang/Object;D:Ljava/lang/Object;>(Lcom/sun/tools/classfile/Attribute$Visitor<TR;TD;>;TD;)TR;
    MethodParameters:
         Name  Flags
      visitor  
      data     
}
SourceFile: "Exceptions_attribute.java"
InnerClasses:
  public abstract Visitor = com.sun.tools.classfile.Attribute$Visitor of com.sun.tools.classfile.Attribute
  public CONSTANT_Class_info = com.sun.tools.classfile.ConstantPool$CONSTANT_Class_info of com.sun.tools.classfile.ConstantPool