类 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

public class MissingRequestValueException extends RequestBindingException
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
另请参阅:
  • 字段详细资料

    • serialVersionUID

      private static final long serialVersionUID
      另请参阅:
    • missingAfterConversion

      private final boolean missingAfterConversion
  • 构造器详细资料

    • MissingRequestValueException

      public MissingRequestValueException(String msg)
    • MissingRequestValueException

      public MissingRequestValueException(String msg, boolean missingAfterConversion)
  • 方法详细资料

    • isMissingAfterConversion

      public boolean isMissingAfterConversion()
      Whether the request value was present but converted to null, e.g. via IdToEntityConverter.