public class org.hibernate.jdbc.TooManyRowsAffectedException extends org.hibernate.HibernateException
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.hibernate.jdbc.TooManyRowsAffectedException
  super_class: org.hibernate.HibernateException
{
  private final int expectedRowCount;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int actualRowCount;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(java.lang.String, int, int);
    descriptor: (Ljava/lang/String;II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.hibernate.jdbc.TooManyRowsAffectedException this
        start local 1 // java.lang.String message
        start local 2 // int expectedRowCount
        start local 3 // int actualRowCount
         0: .line 22
            aload 0 /* this */
            aload 1 /* message */
            invokespecial org.hibernate.HibernateException.<init>:(Ljava/lang/String;)V
         1: .line 23
            aload 0 /* this */
            iload 2 /* expectedRowCount */
            putfield org.hibernate.jdbc.TooManyRowsAffectedException.expectedRowCount:I
         2: .line 24
            aload 0 /* this */
            iload 3 /* actualRowCount */
            putfield org.hibernate.jdbc.TooManyRowsAffectedException.actualRowCount:I
         3: .line 25
            return
        end local 3 // int actualRowCount
        end local 2 // int expectedRowCount
        end local 1 // java.lang.String message
        end local 0 // org.hibernate.jdbc.TooManyRowsAffectedException this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    4     0              this  Lorg/hibernate/jdbc/TooManyRowsAffectedException;
            0    4     1           message  Ljava/lang/String;
            0    4     2  expectedRowCount  I
            0    4     3    actualRowCount  I
    MethodParameters:
                  Name  Flags
      message           
      expectedRowCount  
      actualRowCount    

  public int getExpectedRowCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.jdbc.TooManyRowsAffectedException this
         0: .line 28
            aload 0 /* this */
            getfield org.hibernate.jdbc.TooManyRowsAffectedException.expectedRowCount:I
            ireturn
        end local 0 // org.hibernate.jdbc.TooManyRowsAffectedException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/jdbc/TooManyRowsAffectedException;

  public int getActualRowCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.jdbc.TooManyRowsAffectedException this
         0: .line 32
            aload 0 /* this */
            getfield org.hibernate.jdbc.TooManyRowsAffectedException.actualRowCount:I
            ireturn
        end local 0 // org.hibernate.jdbc.TooManyRowsAffectedException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/jdbc/TooManyRowsAffectedException;
}
SourceFile: "TooManyRowsAffectedException.java"