class com.oracle.truffle.nfi.NFIParserException extends com.oracle.truffle.api.exception.AbstractTruffleException
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.oracle.truffle.nfi.NFIParserException
  super_class: com.oracle.truffle.api.exception.AbstractTruffleException
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private final boolean incompleteSource;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(java.lang.String, boolean);
    descriptor: (Ljava/lang/String;Z)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.oracle.truffle.nfi.NFIParserException this
        start local 1 // java.lang.String message
        start local 2 // boolean incompleteSource
         0: .line 57
            aload 0 /* this */
            aload 1 /* message */
            aconst_null
            invokespecial com.oracle.truffle.api.exception.AbstractTruffleException.<init>:(Ljava/lang/String;Lcom/oracle/truffle/api/nodes/Node;)V
         1: .line 58
            aload 0 /* this */
            iload 2 /* incompleteSource */
            putfield com.oracle.truffle.nfi.NFIParserException.incompleteSource:Z
         2: .line 59
            return
        end local 2 // boolean incompleteSource
        end local 1 // java.lang.String message
        end local 0 // com.oracle.truffle.nfi.NFIParserException this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    3     0              this  Lcom/oracle/truffle/nfi/NFIParserException;
            0    3     1           message  Ljava/lang/String;
            0    3     2  incompleteSource  Z
    MethodParameters:
                  Name  Flags
      message           
      incompleteSource  

  com.oracle.truffle.api.interop.ExceptionType getExceptionType();
    descriptor: ()Lcom/oracle/truffle/api/interop/ExceptionType;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.nfi.NFIParserException this
         0: .line 63
            getstatic com.oracle.truffle.api.interop.ExceptionType.PARSE_ERROR:Lcom/oracle/truffle/api/interop/ExceptionType;
            areturn
        end local 0 // com.oracle.truffle.nfi.NFIParserException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/nfi/NFIParserException;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()

  boolean isExceptionIncompleteSource();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.nfi.NFIParserException this
         0: .line 68
            aload 0 /* this */
            getfield com.oracle.truffle.nfi.NFIParserException.incompleteSource:Z
            ireturn
        end local 0 // com.oracle.truffle.nfi.NFIParserException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/nfi/NFIParserException;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()
}
SourceFile: "NFIParserException.java"
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportLibrary(value = Lcom/oracle/truffle/api/interop/InteropLibrary;)