public abstract class org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver extends org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver
  super_class: org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver this
         0: .line 34
            aload 0 /* this */
            invokespecial org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.<init>:()V
            return
        end local 0 // org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/web/servlet/handler/AbstractHandlerMethodExceptionResolver;

  protected boolean shouldApplyTo(javax.servlet.http.HttpServletRequest, java.lang.Object);
    descriptor: (Ljavax/servlet/http/HttpServletRequest;Ljava/lang/Object;)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver this
        start local 1 // javax.servlet.http.HttpServletRequest request
        start local 2 // java.lang.Object handler
         0: .line 43
            aload 2 /* handler */
            ifnonnull 2
         1: .line 44
            aload 0 /* this */
            aload 1 /* request */
            aconst_null
            invokespecial org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.shouldApplyTo:(Ljavax/servlet/http/HttpServletRequest;Ljava/lang/Object;)Z
            ireturn
         2: .line 46
      StackMap locals:
      StackMap stack:
            aload 2 /* handler */
            instanceof org.springframework.web.method.HandlerMethod
            ifeq 6
         3: .line 47
            aload 2 /* handler */
            checkcast org.springframework.web.method.HandlerMethod
            astore 3 /* handlerMethod */
        start local 3 // org.springframework.web.method.HandlerMethod handlerMethod
         4: .line 48
            aload 3 /* handlerMethod */
            invokevirtual org.springframework.web.method.HandlerMethod.getBean:()Ljava/lang/Object;
            astore 2 /* handler */
         5: .line 49
            aload 0 /* this */
            aload 1 /* request */
            aload 2 /* handler */
            invokespecial org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.shouldApplyTo:(Ljavax/servlet/http/HttpServletRequest;Ljava/lang/Object;)Z
            ireturn
        end local 3 // org.springframework.web.method.HandlerMethod handlerMethod
         6: .line 52
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 2 // java.lang.Object handler
        end local 1 // javax.servlet.http.HttpServletRequest request
        end local 0 // org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    7     0           this  Lorg/springframework/web/servlet/handler/AbstractHandlerMethodExceptionResolver;
            0    7     1        request  Ljavax/servlet/http/HttpServletRequest;
            0    7     2        handler  Ljava/lang/Object;
            4    6     3  handlerMethod  Lorg/springframework/web/method/HandlerMethod;
    RuntimeVisibleParameterAnnotations: 
      0:
      1:
        org.springframework.lang.Nullable()
    MethodParameters:
         Name  Flags
      request  
      handler  

  protected final org.springframework.web.servlet.ModelAndView doResolveException(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.lang.Object, java.lang.Exception);
    descriptor: (Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;Ljava/lang/Object;Ljava/lang/Exception;)Lorg/springframework/web/servlet/ModelAndView;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver this
        start local 1 // javax.servlet.http.HttpServletRequest request
        start local 2 // javax.servlet.http.HttpServletResponse response
        start local 3 // java.lang.Object handler
        start local 4 // java.lang.Exception ex
         0: .line 61
            aload 0 /* this */
            aload 1 /* request */
            aload 2 /* response */
            aload 3 /* handler */
            checkcast org.springframework.web.method.HandlerMethod
            aload 4 /* ex */
            invokevirtual org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveHandlerMethodException:(Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;Lorg/springframework/web/method/HandlerMethod;Ljava/lang/Exception;)Lorg/springframework/web/servlet/ModelAndView;
            areturn
        end local 4 // java.lang.Exception ex
        end local 3 // java.lang.Object handler
        end local 2 // javax.servlet.http.HttpServletResponse response
        end local 1 // javax.servlet.http.HttpServletRequest request
        end local 0 // org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/springframework/web/servlet/handler/AbstractHandlerMethodExceptionResolver;
            0    1     1   request  Ljavax/servlet/http/HttpServletRequest;
            0    1     2  response  Ljavax/servlet/http/HttpServletResponse;
            0    1     3   handler  Ljava/lang/Object;
            0    1     4        ex  Ljava/lang/Exception;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()
    RuntimeVisibleParameterAnnotations: 
      0:
      1:
      2:
        org.springframework.lang.Nullable()
      3:
    MethodParameters:
          Name  Flags
      request   
      response  
      handler   
      ex        

  protected abstract org.springframework.web.servlet.ModelAndView doResolveHandlerMethodException(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, org.springframework.web.method.HandlerMethod, java.lang.Exception);
    descriptor: (Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;Lorg/springframework/web/method/HandlerMethod;Ljava/lang/Exception;)Lorg/springframework/web/servlet/ModelAndView;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()
    RuntimeVisibleParameterAnnotations: 
      0:
      1:
      2:
        org.springframework.lang.Nullable()
      3:
    MethodParameters:
               Name  Flags
      request        
      response       
      handlerMethod  
      ex             
}
SourceFile: "AbstractHandlerMethodExceptionResolver.java"