org.springframework.web.bind
Class MethodArgumentNotValidException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.springframework.web.bind.MethodArgumentNotValidException
- All Implemented Interfaces:
- java.io.Serializable
public class MethodArgumentNotValidException
- extends java.lang.Exception
Exception to be thrown when validation on an argument annotated with @Valid
fails.
- Since:
- 3.1
- Author:
- Rossen Stoyanchev
- See Also:
- Serialized Form
Method Summary |
org.springframework.validation.BindingResult |
getBindingResult()
Return the results of the failed validation. |
java.lang.String |
getMessage()
|
org.springframework.core.MethodParameter |
getParameter()
Return the method parameter that failed validation. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
MethodArgumentNotValidException
public MethodArgumentNotValidException(org.springframework.core.MethodParameter parameter,
org.springframework.validation.BindingResult bindingResult)
- Constructor for
MethodArgumentNotValidException
.
- Parameters:
parameter
- the parameter that failed validationbindingResult
- the results of the validation
getParameter
public org.springframework.core.MethodParameter getParameter()
- Return the method parameter that failed validation.
getBindingResult
public org.springframework.validation.BindingResult getBindingResult()
- Return the results of the failed validation.
getMessage
public java.lang.String getMessage()
- Overrides:
getMessage
in class java.lang.Throwable