1 /*2 * InputValidationException.java3 *4 * All rights reserved.5 * Copyright (C) 2005 JasperSoft Corporation6 *7 * JasperSoft Corporation8 * 303 Second Street, Suite 450 North9 * San Francisco, CA 9410710 * http://www.jaspersoft.com11 *12 *13 * Created on June 8, 2006, 1:10 PM14 *15 */16 17 package com.jaspersoft.jasperserver.irplugin.gui.inputcontrols;18 19 /**20 *21 * @author gtoffoli22 */23 public class InputValidationException extends java.lang.Exception {24 25 /** Creates a new instance of InputValidationException */26 public InputValidationException(String message) {27 super(message);28 }29 30 }31