KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > jaspersoft > jasperserver > irplugin > gui > inputcontrols > InputValidationException


1 /*
2  * InputValidationException.java
3  *
4  * All rights reserved.
5  * Copyright (C) 2005 JasperSoft Corporation
6  *
7  * JasperSoft Corporation
8  * 303 Second Street, Suite 450 North
9  * San Francisco, CA 94107
10  * http://www.jaspersoft.com
11  *
12  *
13  * Created on June 8, 2006, 1:10 PM
14  *
15  */

16
17 package com.jaspersoft.jasperserver.irplugin.gui.inputcontrols;
18
19 /**
20  *
21  * @author gtoffoli
22  */

23 public class InputValidationException extends java.lang.Exception JavaDoc {
24     
25     /** Creates a new instance of InputValidationException */
26     public InputValidationException(String JavaDoc message) {
27         super(message);
28     }
29     
30 }
31
Popular Tags