KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sourceforge > formview > FormViewException


1 package net.sourceforge.formview;
2
3 /**
4  * Dec=scription : Form view exception.
5  * @version 1.0.0
6  * @author <a HREF="mailto:angelo.zerr@gmail.com">Angelo ZERR</a>
7  *
8  */

9 public class FormViewException extends Exception JavaDoc {
10
11     private static final long serialVersionUID = 1L;
12     
13     /**
14      * Constructs an Exception with no specified detail message.
15      */

16     public FormViewException() {
17         super();
18     }
19
20     /**
21      * Constructs an Exception with the specified detail message.
22      *
23      * @param message The error message.
24      */

25     public FormViewException(String JavaDoc message) {
26         super(message);
27     }
28
29 }
30
Popular Tags