1 package org.splat.exception;
5 * Exception thrown when a parameter passed to a method is invalid.
7 public class InvalidParameterException extends BusinessException {
10 * Version id for serialization.
12 private static final long serialVersionUID = -4596111071538834057L;
17 * the the name of the invalid parameter
19 * the value of the parameter
21 public InvalidParameterException(final String param, final String value){
22 //super(MessageKeyEnum.PARAM_000001.toString(), param, value);
23 //constructor doesn't create any meaningful message so localization problems doesn't block further development