* @see Command#getParameterDefinition(String)
*/
public ParameterDefinition getParameterDefinition(String paramName) throws IllegalArgumentException,
NoParameterDefinitionsException {
if (m_parameterDefinitions == null) {
throw new NoParameterDefinitionsException(LOG.getMsgString(CommI18NResourceKeys.NO_PARAM_DEF_ACCEPTS_ALL));
}
if (paramName == null) {
throw new IllegalArgumentException(LOG.getMsgString(CommI18NResourceKeys.NULL_PARAM_NAME));
}