public class org.apache.commons.math3.exception.MultiDimensionMismatchException extends org.apache.commons.math3.exception.MathIllegalArgumentException
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.math3.exception.MultiDimensionMismatchException
  super_class: org.apache.commons.math3.exception.MathIllegalArgumentException
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -8415396756375798143

  private final java.lang.Integer[] wrong;
    descriptor: [Ljava/lang/Integer;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.Integer[] expected;
    descriptor: [Ljava/lang/Integer;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(java.lang.Integer[], java.lang.Integer[]);
    descriptor: ([Ljava/lang/Integer;[Ljava/lang/Integer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.apache.commons.math3.exception.MultiDimensionMismatchException this
        start local 1 // java.lang.Integer[] wrong
        start local 2 // java.lang.Integer[] expected
         0: .line 44
            aload 0 /* this */
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.DIMENSIONS_MISMATCH:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
            aload 1 /* wrong */
            aload 2 /* expected */
            invokespecial org.apache.commons.math3.exception.MultiDimensionMismatchException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;[Ljava/lang/Integer;[Ljava/lang/Integer;)V
         1: .line 45
            return
        end local 2 // java.lang.Integer[] expected
        end local 1 // java.lang.Integer[] wrong
        end local 0 // org.apache.commons.math3.exception.MultiDimensionMismatchException this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/apache/commons/math3/exception/MultiDimensionMismatchException;
            0    2     1     wrong  [Ljava/lang/Integer;
            0    2     2  expected  [Ljava/lang/Integer;
    MethodParameters:
          Name  Flags
      wrong     
      expected  

  public void <init>(org.apache.commons.math3.exception.util.Localizable, java.lang.Integer[], java.lang.Integer[]);
    descriptor: (Lorg/apache/commons/math3/exception/util/Localizable;[Ljava/lang/Integer;[Ljava/lang/Integer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=4
        start local 0 // org.apache.commons.math3.exception.MultiDimensionMismatchException this
        start local 1 // org.apache.commons.math3.exception.util.Localizable specific
        start local 2 // java.lang.Integer[] wrong
        start local 3 // java.lang.Integer[] expected
         0: .line 58
            aload 0 /* this */
            aload 1 /* specific */
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            aload 2 /* wrong */
            aastore
            dup
            iconst_1
            aload 3 /* expected */
            aastore
            invokespecial org.apache.commons.math3.exception.MathIllegalArgumentException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;[Ljava/lang/Object;)V
         1: .line 59
            aload 0 /* this */
            aload 2 /* wrong */
            invokevirtual java.lang.Integer[].clone:()Ljava/lang/Object;
            checkcast java.lang.Integer[]
            putfield org.apache.commons.math3.exception.MultiDimensionMismatchException.wrong:[Ljava/lang/Integer;
         2: .line 60
            aload 0 /* this */
            aload 3 /* expected */
            invokevirtual java.lang.Integer[].clone:()Ljava/lang/Object;
            checkcast java.lang.Integer[]
            putfield org.apache.commons.math3.exception.MultiDimensionMismatchException.expected:[Ljava/lang/Integer;
         3: .line 61
            return
        end local 3 // java.lang.Integer[] expected
        end local 2 // java.lang.Integer[] wrong
        end local 1 // org.apache.commons.math3.exception.util.Localizable specific
        end local 0 // org.apache.commons.math3.exception.MultiDimensionMismatchException this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/apache/commons/math3/exception/MultiDimensionMismatchException;
            0    4     1  specific  Lorg/apache/commons/math3/exception/util/Localizable;
            0    4     2     wrong  [Ljava/lang/Integer;
            0    4     3  expected  [Ljava/lang/Integer;
    MethodParameters:
          Name  Flags
      specific  
      wrong     
      expected  

  public java.lang.Integer[] getWrongDimensions();
    descriptor: ()[Ljava/lang/Integer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.exception.MultiDimensionMismatchException this
         0: .line 67
            aload 0 /* this */
            getfield org.apache.commons.math3.exception.MultiDimensionMismatchException.wrong:[Ljava/lang/Integer;
            invokevirtual java.lang.Integer[].clone:()Ljava/lang/Object;
            checkcast java.lang.Integer[]
            areturn
        end local 0 // org.apache.commons.math3.exception.MultiDimensionMismatchException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/exception/MultiDimensionMismatchException;

  public java.lang.Integer[] getExpectedDimensions();
    descriptor: ()[Ljava/lang/Integer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.exception.MultiDimensionMismatchException this
         0: .line 73
            aload 0 /* this */
            getfield org.apache.commons.math3.exception.MultiDimensionMismatchException.expected:[Ljava/lang/Integer;
            invokevirtual java.lang.Integer[].clone:()Ljava/lang/Object;
            checkcast java.lang.Integer[]
            areturn
        end local 0 // org.apache.commons.math3.exception.MultiDimensionMismatchException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/exception/MultiDimensionMismatchException;

  public int getWrongDimension(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.exception.MultiDimensionMismatchException this
        start local 1 // int index
         0: .line 81
            aload 0 /* this */
            getfield org.apache.commons.math3.exception.MultiDimensionMismatchException.wrong:[Ljava/lang/Integer;
            iload 1 /* index */
            aaload
            invokevirtual java.lang.Integer.intValue:()I
            ireturn
        end local 1 // int index
        end local 0 // org.apache.commons.math3.exception.MultiDimensionMismatchException this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/apache/commons/math3/exception/MultiDimensionMismatchException;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int getExpectedDimension(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.exception.MultiDimensionMismatchException this
        start local 1 // int index
         0: .line 88
            aload 0 /* this */
            getfield org.apache.commons.math3.exception.MultiDimensionMismatchException.expected:[Ljava/lang/Integer;
            iload 1 /* index */
            aaload
            invokevirtual java.lang.Integer.intValue:()I
            ireturn
        end local 1 // int index
        end local 0 // org.apache.commons.math3.exception.MultiDimensionMismatchException this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/apache/commons/math3/exception/MultiDimensionMismatchException;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  
}
SourceFile: "MultiDimensionMismatchException.java"