class org.springframework.boot.diagnostics.analyzer.UnboundConfigurationPropertyFailureAnalyzer extends org.springframework.boot.diagnostics.AbstractFailureAnalyzer<org.springframework.boot.context.properties.bind.UnboundConfigurationPropertiesException>
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.springframework.boot.diagnostics.analyzer.UnboundConfigurationPropertyFailureAnalyzer
  super_class: org.springframework.boot.diagnostics.AbstractFailureAnalyzer
{
  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.boot.diagnostics.analyzer.UnboundConfigurationPropertyFailureAnalyzer this
         0: .line 31
            aload 0 /* this */
            invokespecial org.springframework.boot.diagnostics.AbstractFailureAnalyzer.<init>:()V
            return
        end local 0 // org.springframework.boot.diagnostics.analyzer.UnboundConfigurationPropertyFailureAnalyzer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/boot/diagnostics/analyzer/UnboundConfigurationPropertyFailureAnalyzer;

  protected org.springframework.boot.diagnostics.FailureAnalysis analyze(java.lang.Throwable, org.springframework.boot.context.properties.bind.UnboundConfigurationPropertiesException);
    descriptor: (Ljava/lang/Throwable;Lorg/springframework/boot/context/properties/bind/UnboundConfigurationPropertiesException;)Lorg/springframework/boot/diagnostics/FailureAnalysis;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.springframework.boot.diagnostics.analyzer.UnboundConfigurationPropertyFailureAnalyzer this
        start local 1 // java.lang.Throwable rootFailure
        start local 2 // org.springframework.boot.context.properties.bind.UnboundConfigurationPropertiesException cause
         0: .line 36
            aload 0 /* this */
            aload 1 /* rootFailure */
            ldc Lorg/springframework/boot/context/properties/bind/BindException;
            invokevirtual org.springframework.boot.diagnostics.analyzer.UnboundConfigurationPropertyFailureAnalyzer.findCause:(Ljava/lang/Throwable;Ljava/lang/Class;)Ljava/lang/Throwable;
            checkcast org.springframework.boot.context.properties.bind.BindException
            astore 3 /* exception */
        start local 3 // org.springframework.boot.context.properties.bind.BindException exception
         1: .line 37
            aload 0 /* this */
            aload 3 /* exception */
            aload 2 /* cause */
            invokevirtual org.springframework.boot.diagnostics.analyzer.UnboundConfigurationPropertyFailureAnalyzer.analyzeUnboundConfigurationPropertiesException:(Lorg/springframework/boot/context/properties/bind/BindException;Lorg/springframework/boot/context/properties/bind/UnboundConfigurationPropertiesException;)Lorg/springframework/boot/diagnostics/FailureAnalysis;
            areturn
        end local 3 // org.springframework.boot.context.properties.bind.BindException exception
        end local 2 // org.springframework.boot.context.properties.bind.UnboundConfigurationPropertiesException cause
        end local 1 // java.lang.Throwable rootFailure
        end local 0 // org.springframework.boot.diagnostics.analyzer.UnboundConfigurationPropertyFailureAnalyzer this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lorg/springframework/boot/diagnostics/analyzer/UnboundConfigurationPropertyFailureAnalyzer;
            0    2     1  rootFailure  Ljava/lang/Throwable;
            0    2     2        cause  Lorg/springframework/boot/context/properties/bind/UnboundConfigurationPropertiesException;
            1    2     3    exception  Lorg/springframework/boot/context/properties/bind/BindException;
    MethodParameters:
             Name  Flags
      rootFailure  
      cause        

  private org.springframework.boot.diagnostics.FailureAnalysis analyzeUnboundConfigurationPropertiesException(org.springframework.boot.context.properties.bind.BindException, org.springframework.boot.context.properties.bind.UnboundConfigurationPropertiesException);
    descriptor: (Lorg/springframework/boot/context/properties/bind/BindException;Lorg/springframework/boot/context/properties/bind/UnboundConfigurationPropertiesException;)Lorg/springframework/boot/diagnostics/FailureAnalysis;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=6, args_size=3
        start local 0 // org.springframework.boot.diagnostics.analyzer.UnboundConfigurationPropertyFailureAnalyzer this
        start local 1 // org.springframework.boot.context.properties.bind.BindException cause
        start local 2 // org.springframework.boot.context.properties.bind.UnboundConfigurationPropertiesException exception
         0: .line 42
            new java.lang.StringBuilder
            dup
         1: .line 43
            ldc "Binding to target %s failed:%n"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* cause */
            invokevirtual org.springframework.boot.context.properties.bind.BindException.getTarget:()Lorg/springframework/boot/context/properties/bind/Bindable;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
         2: .line 42
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            astore 3 /* description */
        start local 3 // java.lang.StringBuilder description
         3: .line 44
            aload 2 /* exception */
            invokevirtual org.springframework.boot.context.properties.bind.UnboundConfigurationPropertiesException.getUnboundProperties:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 5
            goto 7
      StackMap locals: org.springframework.boot.diagnostics.analyzer.UnboundConfigurationPropertyFailureAnalyzer org.springframework.boot.context.properties.bind.BindException org.springframework.boot.context.properties.bind.UnboundConfigurationPropertiesException java.lang.StringBuilder top java.util.Iterator
      StackMap stack:
         4: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.springframework.boot.context.properties.source.ConfigurationProperty
            astore 4 /* property */
        start local 4 // org.springframework.boot.context.properties.source.ConfigurationProperty property
         5: .line 45
            aload 0 /* this */
            aload 3 /* description */
            aload 4 /* property */
            invokevirtual org.springframework.boot.diagnostics.analyzer.UnboundConfigurationPropertyFailureAnalyzer.buildDescription:(Ljava/lang/StringBuilder;Lorg/springframework/boot/context/properties/source/ConfigurationProperty;)V
         6: .line 46
            aload 3 /* description */
            ldc "%n    Reason: %s"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 2 /* exception */
            invokevirtual org.springframework.boot.context.properties.bind.UnboundConfigurationPropertiesException.getMessage:()Ljava/lang/String;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        end local 4 // org.springframework.boot.context.properties.source.ConfigurationProperty property
         7: .line 44
      StackMap locals:
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
         8: .line 48
            aload 0 /* this */
            aload 3 /* description */
            aload 1 /* cause */
            invokevirtual org.springframework.boot.diagnostics.analyzer.UnboundConfigurationPropertyFailureAnalyzer.getFailureAnalysis:(Ljava/lang/Object;Lorg/springframework/boot/context/properties/bind/BindException;)Lorg/springframework/boot/diagnostics/FailureAnalysis;
            areturn
        end local 3 // java.lang.StringBuilder description
        end local 2 // org.springframework.boot.context.properties.bind.UnboundConfigurationPropertiesException exception
        end local 1 // org.springframework.boot.context.properties.bind.BindException cause
        end local 0 // org.springframework.boot.diagnostics.analyzer.UnboundConfigurationPropertyFailureAnalyzer this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    9     0         this  Lorg/springframework/boot/diagnostics/analyzer/UnboundConfigurationPropertyFailureAnalyzer;
            0    9     1        cause  Lorg/springframework/boot/context/properties/bind/BindException;
            0    9     2    exception  Lorg/springframework/boot/context/properties/bind/UnboundConfigurationPropertiesException;
            3    9     3  description  Ljava/lang/StringBuilder;
            5    7     4     property  Lorg/springframework/boot/context/properties/source/ConfigurationProperty;
    MethodParameters:
           Name  Flags
      cause      
      exception  

  private void buildDescription(java.lang.StringBuilder, org.springframework.boot.context.properties.source.ConfigurationProperty);
    descriptor: (Ljava/lang/StringBuilder;Lorg/springframework/boot/context/properties/source/ConfigurationProperty;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // org.springframework.boot.diagnostics.analyzer.UnboundConfigurationPropertyFailureAnalyzer this
        start local 1 // java.lang.StringBuilder description
        start local 2 // org.springframework.boot.context.properties.source.ConfigurationProperty property
         0: .line 52
            aload 2 /* property */
            ifnull 4
         1: .line 53
            aload 1 /* description */
            ldc "%n    Property: %s"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 2 /* property */
            invokevirtual org.springframework.boot.context.properties.source.ConfigurationProperty.getName:()Lorg/springframework/boot/context/properties/source/ConfigurationPropertyName;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         2: .line 54
            aload 1 /* description */
            ldc "%n    Value: %s"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 2 /* property */
            invokevirtual org.springframework.boot.context.properties.source.ConfigurationProperty.getValue:()Ljava/lang/Object;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         3: .line 55
            aload 1 /* description */
            ldc "%n    Origin: %s"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 2 /* property */
            invokevirtual org.springframework.boot.context.properties.source.ConfigurationProperty.getOrigin:()Lorg/springframework/boot/origin/Origin;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         4: .line 57
      StackMap locals:
      StackMap stack:
            return
        end local 2 // org.springframework.boot.context.properties.source.ConfigurationProperty property
        end local 1 // java.lang.StringBuilder description
        end local 0 // org.springframework.boot.diagnostics.analyzer.UnboundConfigurationPropertyFailureAnalyzer this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Lorg/springframework/boot/diagnostics/analyzer/UnboundConfigurationPropertyFailureAnalyzer;
            0    5     1  description  Ljava/lang/StringBuilder;
            0    5     2     property  Lorg/springframework/boot/context/properties/source/ConfigurationProperty;
    MethodParameters:
             Name  Flags
      description  
      property     

  private org.springframework.boot.diagnostics.FailureAnalysis getFailureAnalysis(java.lang.Object, org.springframework.boot.context.properties.bind.BindException);
    descriptor: (Ljava/lang/Object;Lorg/springframework/boot/context/properties/bind/BindException;)Lorg/springframework/boot/diagnostics/FailureAnalysis;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.springframework.boot.diagnostics.analyzer.UnboundConfigurationPropertyFailureAnalyzer this
        start local 1 // java.lang.Object description
        start local 2 // org.springframework.boot.context.properties.bind.BindException cause
         0: .line 60
            new org.springframework.boot.diagnostics.FailureAnalysis
            dup
            aload 1 /* description */
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            ldc "Update your application's configuration"
            aload 2 /* cause */
            invokespecial org.springframework.boot.diagnostics.FailureAnalysis.<init>:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V
            areturn
        end local 2 // org.springframework.boot.context.properties.bind.BindException cause
        end local 1 // java.lang.Object description
        end local 0 // org.springframework.boot.diagnostics.analyzer.UnboundConfigurationPropertyFailureAnalyzer this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lorg/springframework/boot/diagnostics/analyzer/UnboundConfigurationPropertyFailureAnalyzer;
            0    1     1  description  Ljava/lang/Object;
            0    1     2        cause  Lorg/springframework/boot/context/properties/bind/BindException;
    MethodParameters:
             Name  Flags
      description  
      cause        

  protected org.springframework.boot.diagnostics.FailureAnalysis analyze(java.lang.Throwable, java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;Ljava/lang/Throwable;)Lorg/springframework/boot/diagnostics/FailureAnalysis;
    flags: (0x1044) ACC_PROTECTED, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            aload 2
            checkcast org.springframework.boot.context.properties.bind.UnboundConfigurationPropertiesException
            invokevirtual org.springframework.boot.diagnostics.analyzer.UnboundConfigurationPropertyFailureAnalyzer.analyze:(Ljava/lang/Throwable;Lorg/springframework/boot/context/properties/bind/UnboundConfigurationPropertiesException;)Lorg/springframework/boot/diagnostics/FailureAnalysis;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Lorg/springframework/boot/diagnostics/AbstractFailureAnalyzer<Lorg/springframework/boot/context/properties/bind/UnboundConfigurationPropertiesException;>;
SourceFile: "UnboundConfigurationPropertyFailureAnalyzer.java"