public class org.springframework.core.convert.ConverterNotFoundException extends org.springframework.core.convert.ConversionException
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.springframework.core.convert.ConverterNotFoundException
  super_class: org.springframework.core.convert.ConversionException
{
  private final org.springframework.core.convert.TypeDescriptor sourceType;
    descriptor: Lorg/springframework/core/convert/TypeDescriptor;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  private final org.springframework.core.convert.TypeDescriptor targetType;
    descriptor: Lorg/springframework/core/convert/TypeDescriptor;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(org.springframework.core.convert.TypeDescriptor, org.springframework.core.convert.TypeDescriptor);
    descriptor: (Lorg/springframework/core/convert/TypeDescriptor;Lorg/springframework/core/convert/TypeDescriptor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.springframework.core.convert.ConverterNotFoundException this
        start local 1 // org.springframework.core.convert.TypeDescriptor sourceType
        start local 2 // org.springframework.core.convert.TypeDescriptor targetType
         0: .line 44
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "No converter found capable of converting from type ["
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* sourceType */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc "] to type ["
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 2 /* targetType */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc "]"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial org.springframework.core.convert.ConversionException.<init>:(Ljava/lang/String;)V
         1: .line 45
            aload 0 /* this */
            aload 1 /* sourceType */
            putfield org.springframework.core.convert.ConverterNotFoundException.sourceType:Lorg/springframework/core/convert/TypeDescriptor;
         2: .line 46
            aload 0 /* this */
            aload 2 /* targetType */
            putfield org.springframework.core.convert.ConverterNotFoundException.targetType:Lorg/springframework/core/convert/TypeDescriptor;
         3: .line 47
            return
        end local 2 // org.springframework.core.convert.TypeDescriptor targetType
        end local 1 // org.springframework.core.convert.TypeDescriptor sourceType
        end local 0 // org.springframework.core.convert.ConverterNotFoundException this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lorg/springframework/core/convert/ConverterNotFoundException;
            0    4     1  sourceType  Lorg/springframework/core/convert/TypeDescriptor;
            0    4     2  targetType  Lorg/springframework/core/convert/TypeDescriptor;
    RuntimeVisibleParameterAnnotations: 
      0:
        org.springframework.lang.Nullable()
      1:
    MethodParameters:
            Name  Flags
      sourceType  
      targetType  

  public org.springframework.core.convert.TypeDescriptor getSourceType();
    descriptor: ()Lorg/springframework/core/convert/TypeDescriptor;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.core.convert.ConverterNotFoundException this
         0: .line 55
            aload 0 /* this */
            getfield org.springframework.core.convert.ConverterNotFoundException.sourceType:Lorg/springframework/core/convert/TypeDescriptor;
            areturn
        end local 0 // org.springframework.core.convert.ConverterNotFoundException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/core/convert/ConverterNotFoundException;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  public org.springframework.core.convert.TypeDescriptor getTargetType();
    descriptor: ()Lorg/springframework/core/convert/TypeDescriptor;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.core.convert.ConverterNotFoundException this
         0: .line 62
            aload 0 /* this */
            getfield org.springframework.core.convert.ConverterNotFoundException.targetType:Lorg/springframework/core/convert/TypeDescriptor;
            areturn
        end local 0 // org.springframework.core.convert.ConverterNotFoundException this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/core/convert/ConverterNotFoundException;
}
SourceFile: "ConverterNotFoundException.java"