类 ConversionFailedException

所有已实现的接口:
Serializable

public class ConversionFailedException extends ConversionException
Exception to be thrown when an actual type conversion attempt fails.
从以下版本开始:
3.0
作者:
Keith Donald, Juergen Hoeller, TODAY 2021/3/22 12:11
另请参阅:
  • 字段详细资料

  • 构造器详细资料

    • ConversionFailedException

      public ConversionFailedException(@Nullable TypeDescriptor sourceType, TypeDescriptor targetType, @Nullable Object value, Throwable cause)
      Create a new conversion exception.
      参数:
      sourceType - the value's original type
      targetType - the value's target type
      value - the value we tried to convert
      cause - the cause of the conversion failure
  • 方法详细资料

    • getSourceType

      @Nullable public TypeDescriptor getSourceType()
      Return the source type we tried to convert the value from.
    • getTargetType

      public TypeDescriptor getTargetType()
      Return the target type we tried to convert the value to.
    • getValue

      @Nullable public Object getValue()
      Return the offending value.