public class org.springframework.web.server.handler.ExceptionHandlingWebHandler extends org.springframework.web.server.handler.WebHandlerDecorator
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.springframework.web.server.handler.ExceptionHandlingWebHandler
  super_class: org.springframework.web.server.handler.WebHandlerDecorator
{
  private final java.util.List<org.springframework.web.server.WebExceptionHandler> exceptionHandlers;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Lorg/springframework/web/server/WebExceptionHandler;>;

  public void <init>(org.springframework.web.server.WebHandler, java.util.List<org.springframework.web.server.WebExceptionHandler>);
    descriptor: (Lorg/springframework/web/server/WebHandler;Ljava/util/List;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.springframework.web.server.handler.ExceptionHandlingWebHandler this
        start local 1 // org.springframework.web.server.WebHandler delegate
        start local 2 // java.util.List handlers
         0: .line 43
            aload 0 /* this */
            aload 1 /* delegate */
            invokespecial org.springframework.web.server.handler.WebHandlerDecorator.<init>:(Lorg/springframework/web/server/WebHandler;)V
         1: .line 44
            aload 0 /* this */
            new java.util.ArrayList
            dup
            aload 2 /* handlers */
            invokespecial java.util.ArrayList.<init>:(Ljava/util/Collection;)V
            invokestatic java.util.Collections.unmodifiableList:(Ljava/util/List;)Ljava/util/List;
            putfield org.springframework.web.server.handler.ExceptionHandlingWebHandler.exceptionHandlers:Ljava/util/List;
         2: .line 45
            return
        end local 2 // java.util.List handlers
        end local 1 // org.springframework.web.server.WebHandler delegate
        end local 0 // org.springframework.web.server.handler.ExceptionHandlingWebHandler this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/springframework/web/server/handler/ExceptionHandlingWebHandler;
            0    3     1  delegate  Lorg/springframework/web/server/WebHandler;
            0    3     2  handlers  Ljava/util/List<Lorg/springframework/web/server/WebExceptionHandler;>;
    Signature: (Lorg/springframework/web/server/WebHandler;Ljava/util/List<Lorg/springframework/web/server/WebExceptionHandler;>;)V
    MethodParameters:
          Name  Flags
      delegate  
      handlers  

  public java.util.List<org.springframework.web.server.WebExceptionHandler> getExceptionHandlers();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.web.server.handler.ExceptionHandlingWebHandler this
         0: .line 52
            aload 0 /* this */
            getfield org.springframework.web.server.handler.ExceptionHandlingWebHandler.exceptionHandlers:Ljava/util/List;
            areturn
        end local 0 // org.springframework.web.server.handler.ExceptionHandlingWebHandler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/web/server/handler/ExceptionHandlingWebHandler;
    Signature: ()Ljava/util/List<Lorg/springframework/web/server/WebExceptionHandler;>;

  public reactor.core.publisher.Mono<java.lang.Void> handle(org.springframework.web.server.ServerWebExchange);
    descriptor: (Lorg/springframework/web/server/ServerWebExchange;)Lreactor/core/publisher/Mono;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.springframework.web.server.handler.ExceptionHandlingWebHandler this
        start local 1 // org.springframework.web.server.ServerWebExchange exchange
         0: .line 61
            aload 0 /* this */
            aload 1 /* exchange */
            invokespecial org.springframework.web.server.handler.WebHandlerDecorator.handle:(Lorg/springframework/web/server/ServerWebExchange;)Lreactor/core/publisher/Mono;
            astore 2 /* completion */
        start local 2 // reactor.core.publisher.Mono completion
         1: .line 62
            goto 4
        end local 2 // reactor.core.publisher.Mono completion
         2: .line 63
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 3 /* ex */
        start local 3 // java.lang.Throwable ex
         3: .line 64
            aload 3 /* ex */
            invokestatic reactor.core.publisher.Mono.error:(Ljava/lang/Throwable;)Lreactor/core/publisher/Mono;
            astore 2 /* completion */
        end local 3 // java.lang.Throwable ex
        start local 2 // reactor.core.publisher.Mono completion
         4: .line 67
      StackMap locals: reactor.core.publisher.Mono
      StackMap stack:
            aload 0 /* this */
            getfield org.springframework.web.server.handler.ExceptionHandlingWebHandler.exceptionHandlers:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 7
      StackMap locals: org.springframework.web.server.handler.ExceptionHandlingWebHandler org.springframework.web.server.ServerWebExchange reactor.core.publisher.Mono top java.util.Iterator
      StackMap stack:
         5: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.springframework.web.server.WebExceptionHandler
            astore 3 /* handler */
        start local 3 // org.springframework.web.server.WebExceptionHandler handler
         6: .line 68
            aload 2 /* completion */
            aload 3 /* handler */
            aload 1 /* exchange */
            invokedynamic apply(Lorg/springframework/web/server/WebExceptionHandler;Lorg/springframework/web/server/ServerWebExchange;)Ljava/util/function/Function;
              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:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  org/springframework/web/server/handler/ExceptionHandlingWebHandler.lambda$0(Lorg/springframework/web/server/WebExceptionHandler;Lorg/springframework/web/server/ServerWebExchange;Ljava/lang/Throwable;)Lreactor/core/publisher/Mono; (6)
                  (Ljava/lang/Throwable;)Lreactor/core/publisher/Mono;
            invokevirtual reactor.core.publisher.Mono.onErrorResume:(Ljava/util/function/Function;)Lreactor/core/publisher/Mono;
            astore 2 /* completion */
        end local 3 // org.springframework.web.server.WebExceptionHandler handler
         7: .line 67
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 5
         8: .line 71
            aload 2 /* completion */
            areturn
        end local 2 // reactor.core.publisher.Mono completion
        end local 1 // org.springframework.web.server.ServerWebExchange exchange
        end local 0 // org.springframework.web.server.handler.ExceptionHandlingWebHandler this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    9     0        this  Lorg/springframework/web/server/handler/ExceptionHandlingWebHandler;
            0    9     1    exchange  Lorg/springframework/web/server/ServerWebExchange;
            1    2     2  completion  Lreactor/core/publisher/Mono<Ljava/lang/Void;>;
            4    9     2  completion  Lreactor/core/publisher/Mono<Ljava/lang/Void;>;
            3    4     3          ex  Ljava/lang/Throwable;
            6    7     3     handler  Lorg/springframework/web/server/WebExceptionHandler;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.Throwable
    Signature: (Lorg/springframework/web/server/ServerWebExchange;)Lreactor/core/publisher/Mono<Ljava/lang/Void;>;
    MethodParameters:
          Name  Flags
      exchange  

  private static reactor.core.publisher.Mono lambda$0(org.springframework.web.server.WebExceptionHandler, org.springframework.web.server.ServerWebExchange, java.lang.Throwable);
    descriptor: (Lorg/springframework/web/server/WebExceptionHandler;Lorg/springframework/web/server/ServerWebExchange;Ljava/lang/Throwable;)Lreactor/core/publisher/Mono;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
        start local 2 // java.lang.Throwable ex
         0: .line 68
            aload 0
            aload 1
            aload 2 /* ex */
            invokeinterface org.springframework.web.server.WebExceptionHandler.handle:(Lorg/springframework/web/server/ServerWebExchange;Ljava/lang/Throwable;)Lreactor/core/publisher/Mono;
            areturn
        end local 2 // java.lang.Throwable ex
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     2    ex  Ljava/lang/Throwable;
}
SourceFile: "ExceptionHandlingWebHandler.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles