org.springframework.web.bind
Class MissingServletRequestParameterException
java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.servlet.ServletException
org.springframework.web.util.NestedServletException
org.springframework.web.bind.ServletRequestBindingException
org.springframework.web.bind.MissingServletRequestParameterException
- All Implemented Interfaces:
- java.io.Serializable
public class MissingServletRequestParameterException
- extends ServletRequestBindingException
ServletRequestBindingException
subclass that indicates a missing parameter.
- Since:
- 2.0.2
- Author:
- Juergen Hoeller
- See Also:
- Serialized Form
Method Summary |
java.lang.String |
getMessage()
Return the detail message, including the message from the nested exception
if there is one. |
java.lang.String |
getParameterName()
Return the name of the offending parameter. |
java.lang.String |
getParameterType()
Return the expected type of the offending parameter. |
Methods inherited from class javax.servlet.ServletException |
getRootCause |
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 |
parameterName
private final java.lang.String parameterName
parameterType
private final java.lang.String parameterType
MissingServletRequestParameterException
public MissingServletRequestParameterException(java.lang.String parameterName,
java.lang.String parameterType)
- Constructor for MissingServletRequestParameterException.
- Parameters:
parameterName
- the name of the missing parameterparameterType
- the expected type of the missing parameter
getMessage
public java.lang.String getMessage()
- Description copied from class:
NestedServletException
- Return the detail message, including the message from the nested exception
if there is one.
- Overrides:
getMessage
in class NestedServletException
getParameterName
public final java.lang.String getParameterName()
- Return the name of the offending parameter.
getParameterType
public final java.lang.String getParameterType()
- Return the expected type of the offending parameter.