org.springframework.web.portlet.bind
Class MissingPortletRequestParameterException

java.lang.Object
  extended by PortletException
      extended by org.springframework.web.portlet.bind.PortletRequestBindingException
          extended by org.springframework.web.portlet.bind.MissingPortletRequestParameterException

public class MissingPortletRequestParameterException
extends PortletRequestBindingException

PortletRequestBindingException subclass that indicates a missing parameter.

Since:
2.0.2
Author:
Juergen Hoeller

Field Summary
private  java.lang.String parameterName
           
private  java.lang.String parameterType
           
 
Constructor Summary
MissingPortletRequestParameterException(java.lang.String parameterName, java.lang.String parameterType)
          Constructor for MissingPortletRequestParameterException.
 
Method Summary
 java.lang.String getMessage()
           
 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 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

parameterName

private final java.lang.String parameterName

parameterType

private final java.lang.String parameterType
Constructor Detail

MissingPortletRequestParameterException

public MissingPortletRequestParameterException(java.lang.String parameterName,
                                               java.lang.String parameterType)
Constructor for MissingPortletRequestParameterException.

Parameters:
parameterName - the name of the missing parameter
parameterType - the expected type of the missing parameter
Method Detail

getMessage

public java.lang.String getMessage()

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.