public final class com.lmax.disruptor.IgnoreExceptionHandler implements com.lmax.disruptor.ExceptionHandler<java.lang.Object>
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.lmax.disruptor.IgnoreExceptionHandler
  super_class: java.lang.Object
{
  private static final java.util.logging.Logger LOGGER;
    descriptor: Ljava/util/logging/Logger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final java.util.logging.Logger logger;
    descriptor: Ljava/util/logging/Logger;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 27
            ldc Lcom/lmax/disruptor/IgnoreExceptionHandler;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            invokestatic java.util.logging.Logger.getLogger:(Ljava/lang/String;)Ljava/util/logging/Logger;
            putstatic com.lmax.disruptor.IgnoreExceptionHandler.LOGGER:Ljava/util/logging/Logger;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.lmax.disruptor.IgnoreExceptionHandler this
         0: .line 30
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 32
            aload 0 /* this */
            getstatic com.lmax.disruptor.IgnoreExceptionHandler.LOGGER:Ljava/util/logging/Logger;
            putfield com.lmax.disruptor.IgnoreExceptionHandler.logger:Ljava/util/logging/Logger;
         2: .line 33
            return
        end local 0 // com.lmax.disruptor.IgnoreExceptionHandler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/lmax/disruptor/IgnoreExceptionHandler;

  public void <init>(java.util.logging.Logger);
    descriptor: (Ljava/util/logging/Logger;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.lmax.disruptor.IgnoreExceptionHandler this
        start local 1 // java.util.logging.Logger logger
         0: .line 35
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 37
            aload 0 /* this */
            aload 1 /* logger */
            putfield com.lmax.disruptor.IgnoreExceptionHandler.logger:Ljava/util/logging/Logger;
         2: .line 38
            return
        end local 1 // java.util.logging.Logger logger
        end local 0 // com.lmax.disruptor.IgnoreExceptionHandler this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lcom/lmax/disruptor/IgnoreExceptionHandler;
            0    3     1  logger  Ljava/util/logging/Logger;
    MethodParameters:
        Name  Flags
      logger  final

  public void handleEventException(java.lang.Throwable, long, java.lang.Object);
    descriptor: (Ljava/lang/Throwable;JLjava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // com.lmax.disruptor.IgnoreExceptionHandler this
        start local 1 // java.lang.Throwable ex
        start local 2 // long sequence
        start local 4 // java.lang.Object event
         0: .line 43
            aload 0 /* this */
            getfield com.lmax.disruptor.IgnoreExceptionHandler.logger:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.INFO:Ljava/util/logging/Level;
            new java.lang.StringBuilder
            dup
            ldc "Exception processing: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            lload 2 /* sequence */
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            ldc " "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 4 /* event */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 1 /* ex */
            invokevirtual java.util.logging.Logger.log:(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/Throwable;)V
         1: .line 44
            return
        end local 4 // java.lang.Object event
        end local 2 // long sequence
        end local 1 // java.lang.Throwable ex
        end local 0 // com.lmax.disruptor.IgnoreExceptionHandler this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lcom/lmax/disruptor/IgnoreExceptionHandler;
            0    2     1        ex  Ljava/lang/Throwable;
            0    2     2  sequence  J
            0    2     4     event  Ljava/lang/Object;
    MethodParameters:
          Name  Flags
      ex        final
      sequence  final
      event     final

  public void handleOnStartException(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.lmax.disruptor.IgnoreExceptionHandler this
        start local 1 // java.lang.Throwable ex
         0: .line 49
            aload 0 /* this */
            getfield com.lmax.disruptor.IgnoreExceptionHandler.logger:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.INFO:Ljava/util/logging/Level;
            ldc "Exception during onStart()"
            aload 1 /* ex */
            invokevirtual java.util.logging.Logger.log:(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/Throwable;)V
         1: .line 50
            return
        end local 1 // java.lang.Throwable ex
        end local 0 // com.lmax.disruptor.IgnoreExceptionHandler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/lmax/disruptor/IgnoreExceptionHandler;
            0    2     1    ex  Ljava/lang/Throwable;
    MethodParameters:
      Name  Flags
      ex    final

  public void handleOnShutdownException(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.lmax.disruptor.IgnoreExceptionHandler this
        start local 1 // java.lang.Throwable ex
         0: .line 55
            aload 0 /* this */
            getfield com.lmax.disruptor.IgnoreExceptionHandler.logger:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.INFO:Ljava/util/logging/Level;
            ldc "Exception during onShutdown()"
            aload 1 /* ex */
            invokevirtual java.util.logging.Logger.log:(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/Throwable;)V
         1: .line 56
            return
        end local 1 // java.lang.Throwable ex
        end local 0 // com.lmax.disruptor.IgnoreExceptionHandler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/lmax/disruptor/IgnoreExceptionHandler;
            0    2     1    ex  Ljava/lang/Throwable;
    MethodParameters:
      Name  Flags
      ex    final
}
Signature: Ljava/lang/Object;Lcom/lmax/disruptor/ExceptionHandler<Ljava/lang/Object;>;
SourceFile: "IgnoreExceptionHandler.java"