public class java.util.IllegalFormatCodePointException extends java.util.IllegalFormatException
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: java.util.IllegalFormatCodePointException
  super_class: java.util.IllegalFormatException
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 19080630

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

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.util.IllegalFormatCodePointException this
        start local 1 // int c
         0: .line 52
            aload 0 /* this */
            invokespecial java.util.IllegalFormatException.<init>:()V
         1: .line 53
            aload 0 /* this */
            iload 1 /* c */
            putfield java.util.IllegalFormatCodePointException.c:I
         2: .line 54
            return
        end local 1 // int c
        end local 0 // java.util.IllegalFormatCodePointException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/util/IllegalFormatCodePointException;
            0    3     1     c  I
    MethodParameters:
      Name  Flags
      c     

  public int getCodePoint();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.util.IllegalFormatCodePointException this
         0: .line 63
            aload 0 /* this */
            getfield java.util.IllegalFormatCodePointException.c:I
            ireturn
        end local 0 // java.util.IllegalFormatCodePointException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/util/IllegalFormatCodePointException;

  public java.lang.String getMessage();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // java.util.IllegalFormatCodePointException this
         0: .line 67
            ldc "Code point = %#x"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield java.util.IllegalFormatCodePointException.c:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            areturn
        end local 0 // java.util.IllegalFormatCodePointException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/util/IllegalFormatCodePointException;
}
SourceFile: "IllegalFormatCodePointException.java"