类 ConverterNotFoundException

所有已实现的接口:
Serializable

public class ConverterNotFoundException extends ConversionException
Exception to be thrown when a suitable converter could not be found in a given conversion service.
从以下版本开始:
3.0
作者:
Keith Donald, Juergen Hoeller, TODAY 2021/3/22 12:08
另请参阅:
  • 构造器详细资料

    • ConverterNotFoundException

      public ConverterNotFoundException(@Nullable TypeDescriptor sourceType, TypeDescriptor targetType)
      Create a new conversion executor not found exception.
      参数:
      sourceType - the source type requested to convert from
      targetType - the target type requested to convert to
  • 方法详细资料

    • getSourceType

      @Nullable public TypeDescriptor getSourceType()
      Return the source type that was requested to convert from.
    • getTargetType

      public TypeDescriptor getTargetType()
      Return the target type that was requested to convert to.