public class com.oracle.truffle.js.runtime.ExitException extends com.oracle.truffle.api.exception.AbstractTruffleException
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.oracle.truffle.js.runtime.ExitException
  super_class: com.oracle.truffle.api.exception.AbstractTruffleException
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -1456196298096686373

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

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.truffle.js.runtime.ExitException this
        start local 1 // int status
         0: .line 57
            aload 0 /* this */
            iload 1 /* status */
            aconst_null
            invokespecial com.oracle.truffle.js.runtime.ExitException.<init>:(ILcom/oracle/truffle/api/nodes/Node;)V
         1: .line 58
            return
        end local 1 // int status
        end local 0 // com.oracle.truffle.js.runtime.ExitException this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/oracle/truffle/js/runtime/ExitException;
            0    2     1  status  I
    MethodParameters:
        Name  Flags
      status  

  public void <init>(int, com.oracle.truffle.api.nodes.Node);
    descriptor: (ILcom/oracle/truffle/api/nodes/Node;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.oracle.truffle.js.runtime.ExitException this
        start local 1 // int status
        start local 2 // com.oracle.truffle.api.nodes.Node location
         0: .line 61
            aload 0 /* this */
            aload 2 /* location */
            invokespecial com.oracle.truffle.api.exception.AbstractTruffleException.<init>:(Lcom/oracle/truffle/api/nodes/Node;)V
         1: .line 62
            aload 0 /* this */
            iload 1 /* status */
            putfield com.oracle.truffle.js.runtime.ExitException.status:I
         2: .line 63
            return
        end local 2 // com.oracle.truffle.api.nodes.Node location
        end local 1 // int status
        end local 0 // com.oracle.truffle.js.runtime.ExitException this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lcom/oracle/truffle/js/runtime/ExitException;
            0    3     1    status  I
            0    3     2  location  Lcom/oracle/truffle/api/nodes/Node;
    MethodParameters:
          Name  Flags
      status    
      location  

  public int getStatus();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.js.runtime.ExitException this
         0: .line 66
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.ExitException.status:I
            ireturn
        end local 0 // com.oracle.truffle.js.runtime.ExitException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/js/runtime/ExitException;

  public com.oracle.truffle.api.interop.ExceptionType getExceptionType();
    descriptor: ()Lcom/oracle/truffle/api/interop/ExceptionType;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.js.runtime.ExitException this
         0: .line 72
            getstatic com.oracle.truffle.api.interop.ExceptionType.EXIT:Lcom/oracle/truffle/api/interop/ExceptionType;
            areturn
        end local 0 // com.oracle.truffle.js.runtime.ExitException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/js/runtime/ExitException;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()

  public int getExceptionExitStatus();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.js.runtime.ExitException this
         0: .line 77
            aload 0 /* this */
            invokevirtual com.oracle.truffle.js.runtime.ExitException.getStatus:()I
            ireturn
        end local 0 // com.oracle.truffle.js.runtime.ExitException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/js/runtime/ExitException;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()
}
SourceFile: "ExitException.java"
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportLibrary(value = Lcom/oracle/truffle/api/interop/InteropLibrary;)