public class org.jruby.RubyInterrupt extends org.jruby.RubySignalException
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.jruby.RubyInterrupt
  super_class: org.jruby.RubySignalException
{
  private static final org.jruby.runtime.ObjectAllocator INTERRUPT_ALLOCATOR;
    descriptor: Lorg/jruby/runtime/ObjectAllocator;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 50
            invokedynamic allocate()Lorg/jruby/runtime/ObjectAllocator;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Lorg/jruby/Ruby;Lorg/jruby/RubyClass;)Lorg/jruby/runtime/builtin/IRubyObject;
                  org/jruby/RubyInterrupt.lambda$0(Lorg/jruby/Ruby;Lorg/jruby/RubyClass;)Lorg/jruby/runtime/builtin/IRubyObject; (6)
                  (Lorg/jruby/Ruby;Lorg/jruby/RubyClass;)Lorg/jruby/runtime/builtin/IRubyObject;
            putstatic org.jruby.RubyInterrupt.INTERRUPT_ALLOCATOR:Lorg/jruby/runtime/ObjectAllocator;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  static org.jruby.RubyClass define(org.jruby.Ruby, org.jruby.RubyClass);
    descriptor: (Lorg/jruby/Ruby;Lorg/jruby/RubyClass;)Lorg/jruby/RubyClass;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.jruby.Ruby runtime
        start local 1 // org.jruby.RubyClass signalExceptionClass
         0: .line 53
            aload 0 /* runtime */
            ldc "Interrupt"
            aload 1 /* signalExceptionClass */
            getstatic org.jruby.RubyInterrupt.INTERRUPT_ALLOCATOR:Lorg/jruby/runtime/ObjectAllocator;
            invokevirtual org.jruby.Ruby.defineClass:(Ljava/lang/String;Lorg/jruby/RubyClass;Lorg/jruby/runtime/ObjectAllocator;)Lorg/jruby/RubyClass;
            astore 2 /* interruptClass */
        start local 2 // org.jruby.RubyClass interruptClass
         1: .line 54
            aload 2 /* interruptClass */
            ldc Lorg/jruby/RubyInterrupt;
            invokevirtual org.jruby.RubyClass.defineAnnotatedMethods:(Ljava/lang/Class;)V
         2: .line 55
            aload 2 /* interruptClass */
            areturn
        end local 2 // org.jruby.RubyClass interruptClass
        end local 1 // org.jruby.RubyClass signalExceptionClass
        end local 0 // org.jruby.Ruby runtime
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    3     0               runtime  Lorg/jruby/Ruby;
            0    3     1  signalExceptionClass  Lorg/jruby/RubyClass;
            1    3     2        interruptClass  Lorg/jruby/RubyClass;
    MethodParameters:
                      Name  Flags
      runtime               
      signalExceptionClass  

  protected void <init>(org.jruby.Ruby, org.jruby.RubyClass);
    descriptor: (Lorg/jruby/Ruby;Lorg/jruby/RubyClass;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.jruby.RubyInterrupt this
        start local 1 // org.jruby.Ruby runtime
        start local 2 // org.jruby.RubyClass exceptionClass
         0: .line 59
            aload 0 /* this */
            aload 1 /* runtime */
            aload 2 /* exceptionClass */
            invokespecial org.jruby.RubySignalException.<init>:(Lorg/jruby/Ruby;Lorg/jruby/RubyClass;)V
         1: .line 60
            return
        end local 2 // org.jruby.RubyClass exceptionClass
        end local 1 // org.jruby.Ruby runtime
        end local 0 // org.jruby.RubyInterrupt this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lorg/jruby/RubyInterrupt;
            0    2     1         runtime  Lorg/jruby/Ruby;
            0    2     2  exceptionClass  Lorg/jruby/RubyClass;
    MethodParameters:
                Name  Flags
      runtime         
      exceptionClass  

  protected org.jruby.exceptions.RaiseException constructThrowable(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/jruby/exceptions/RaiseException;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.jruby.RubyInterrupt this
        start local 1 // java.lang.String message
         0: .line 64
            new org.jruby.exceptions.Interrupt
            dup
            aload 1 /* message */
            aload 0 /* this */
            invokespecial org.jruby.exceptions.Interrupt.<init>:(Ljava/lang/String;Lorg/jruby/RubyInterrupt;)V
            areturn
        end local 1 // java.lang.String message
        end local 0 // org.jruby.RubyInterrupt this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jruby/RubyInterrupt;
            0    1     1  message  Ljava/lang/String;
    MethodParameters:
         Name  Flags
      message  

  public org.jruby.runtime.builtin.IRubyObject initialize(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/ThreadContext;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // org.jruby.RubyInterrupt this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.builtin.IRubyObject[] args
        start local 3 // org.jruby.runtime.Block block
         0: .line 70
            aload 1 /* context */
            getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
            astore 4 /* runtime */
        start local 4 // org.jruby.Ruby runtime
         1: .line 72
            aload 4 /* runtime */
            aload 2 /* args */
            iconst_0
            iconst_1
            invokestatic org.jruby.runtime.Arity.checkArgumentCount:(Lorg/jruby/Ruby;[Lorg/jruby/runtime/builtin/IRubyObject;II)I
            pop
         2: .line 74
            aload 4 /* runtime */
            getstatic jnr.constants.platform.Signal.SIGINT:Ljnr/constants/platform/Signal;
            invokevirtual org.jruby.Ruby.newFixnum:(Ljnr/constants/Constant;)Lorg/jruby/RubyFixnum;
            astore 5 /* signo */
        start local 5 // org.jruby.runtime.builtin.IRubyObject signo
         3: .line 76
            aload 2 /* args */
            arraylength
            ifle 6
         4: .line 77
            aload 5 /* signo */
            aload 2 /* args */
            invokestatic org.jruby.util.ArraySupport.newCopy:(Lorg/jruby/runtime/builtin/IRubyObject;[Lorg/jruby/runtime/builtin/IRubyObject;)[Lorg/jruby/runtime/builtin/IRubyObject;
            astore 2 /* args */
         5: .line 78
            goto 7
         6: .line 79
      StackMap locals: org.jruby.Ruby org.jruby.runtime.builtin.IRubyObject
      StackMap stack:
            iconst_2
            anewarray org.jruby.runtime.builtin.IRubyObject
            dup
            iconst_0
            aload 5 /* signo */
            aastore
            dup
            iconst_1
            aload 4 /* runtime */
            ldc "Interrupt"
            invokevirtual org.jruby.Ruby.newString:(Ljava/lang/String;)Lorg/jruby/RubyString;
            aastore
            astore 2 /* args */
         7: .line 82
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* args */
            aload 3 /* block */
            invokespecial org.jruby.RubySignalException.initialize:(Lorg/jruby/runtime/ThreadContext;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
            pop
         8: .line 83
            aload 0 /* this */
            areturn
        end local 5 // org.jruby.runtime.builtin.IRubyObject signo
        end local 4 // org.jruby.Ruby runtime
        end local 3 // org.jruby.runtime.Block block
        end local 2 // org.jruby.runtime.builtin.IRubyObject[] args
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.RubyInterrupt this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lorg/jruby/RubyInterrupt;
            0    9     1  context  Lorg/jruby/runtime/ThreadContext;
            0    9     2     args  [Lorg/jruby/runtime/builtin/IRubyObject;
            0    9     3    block  Lorg/jruby/runtime/Block;
            1    9     4  runtime  Lorg/jruby/Ruby;
            3    9     5    signo  Lorg/jruby/runtime/builtin/IRubyObject;
    RuntimeVisibleAnnotations: 
      org.jruby.anno.JRubyMethod(optional = 1, visibility = org.jruby.runtime.Visibility.PRIVATE:Lorg/jruby/runtime/Visibility;)
    MethodParameters:
         Name  Flags
      context  
      args     
      block    

  private static org.jruby.runtime.builtin.IRubyObject lambda$0(org.jruby.Ruby, org.jruby.RubyClass);
    descriptor: (Lorg/jruby/Ruby;Lorg/jruby/RubyClass;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.jruby.Ruby runtime
        start local 1 // org.jruby.RubyClass klass
         0: .line 50
            new org.jruby.RubyInterrupt
            dup
            aload 0 /* runtime */
            aload 1 /* klass */
            invokespecial org.jruby.RubyInterrupt.<init>:(Lorg/jruby/Ruby;Lorg/jruby/RubyClass;)V
            areturn
        end local 1 // org.jruby.RubyClass klass
        end local 0 // org.jruby.Ruby runtime
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  runtime  Lorg/jruby/Ruby;
            0    1     1    klass  Lorg/jruby/RubyClass;
}
SourceFile: "RubyInterrupt.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
    RuntimeVisibleAnnotations: 
      org.jruby.anno.JRubyClass(name = {"Interrupt"}, parent = "SignalException")