类 ConverterNotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
cn.taketoday.core.NestedRuntimeException
cn.taketoday.core.conversion.ConversionException
cn.taketoday.core.conversion.ConverterNotFoundException
- 所有已实现的接口:
NestedException,Serializable
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(TypeDescriptor sourceType, TypeDescriptor targetType) Create a new conversion executor not found exception. -
方法概要
修饰符和类型方法说明Return the source type that was requested to convert from.Return the target type that was requested to convert to.从类继承的方法 cn.taketoday.core.NestedRuntimeException
contains, getMostSpecificCause, getNestedMessage, getRootCause
-
字段详细资料
-
serialVersionUID
private static final long serialVersionUID- 另请参阅:
-
sourceType
-
targetType
-
-
构造器详细资料
-
ConverterNotFoundException
Create a new conversion executor not found exception.- 参数:
sourceType- the source type requested to convert fromtargetType- the target type requested to convert to
-
-
方法详细资料
-
getSourceType
Return the source type that was requested to convert from. -
getTargetType
Return the target type that was requested to convert to.
-