类 MissingRequestValueException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
cn.taketoday.core.NestedRuntimeException
cn.taketoday.web.bind.RequestBindingException
cn.taketoday.web.bind.MissingRequestValueException
- 所有已实现的接口:
HttpStatusCodeProvider,ErrorResponse,Serializable
- 直接已知子类:
MissingMatrixVariableException,MissingPathVariableException,MissingRequestCookieException,MissingRequestHeaderException,MissingRequestParameterException,MissingRequestPartException
Base class for
RequestBindingException exceptions that could
not bind because the request value is required but is either missing or
otherwise resolves to null after conversion.- 从以下版本开始:
- 4.0
- 作者:
- Rossen Stoyanchev
- 另请参阅:
-
字段概要
字段修饰符和类型字段说明private final booleanprivate static final long -
构造器概要
构造器 -
方法概要
修饰符和类型方法说明booleanWhether the request value was present but converted tonull, e.g. viaIdToEntityConverter.从类继承的方法 cn.taketoday.web.bind.RequestBindingException
getBody, getStatusCode, setDetail, setInstance, setTitle, setType从类继承的方法 cn.taketoday.core.NestedRuntimeException
contains, getMostSpecificCause, getNestedMessage, getRootCause从类继承的方法 java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait从接口继承的方法 cn.taketoday.web.ErrorResponse
getHeaders
-
字段详细资料
-
serialVersionUID
private static final long serialVersionUID- 另请参阅:
-
missingAfterConversion
private final boolean missingAfterConversion
-
-
构造器详细资料
-
MissingRequestValueException
-
MissingRequestValueException
-
-
方法详细资料
-
isMissingAfterConversion
public boolean isMissingAfterConversion()Whether the request value was present but converted tonull, e.g. viaIdToEntityConverter.
-