KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > igfay > jfig > JFigException


1 package org.igfay.jfig;
2
3 /**
4  * Insert the type's description here. Creation date: (11/12/99 4:30:44 PM)
5  *
6  *@author bconrad
7  *@created April 3, 2001
8  *@author:
9  */

10 public class JFigException extends Exception JavaDoc {
11     private static final long serialVersionUID = 1L;
12
13
14     /**
15      * JFigException constructor comment.
16      */

17     public JFigException() {
18         super();
19     }
20
21
22     /**
23      * JFigException constructor comment.
24      *
25      *@param s java.lang.String
26      */

27     public JFigException(String JavaDoc s) {
28         super(s);
29     }
30 }
31
Popular Tags