package microservices.sample; /** * This exception will be used inside service handlers, will be thrown when input parameters are not valid. * * @author mamad * @since 17/03/15. */ public class InvalidValueException extends Exception { public InvalidValueException() { } public InvalidValueException(String message) { super(message); } }