KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > jofti > exception > JoftiException


1 /*
2  * BuildException.java
3  *
4  * Created on 12 May 2003, 12:28
5  */

6
7 package com.jofti.exception;
8
9 /**
10  *
11  * @author xenephon (xenephon@jofti.com)
12  */

13 public class JoftiException extends java.lang.Exception JavaDoc {
14     
15     /**
16      *
17      */

18     private static final long serialVersionUID = 1330233914487413239L;
19
20     /**
21      * Creates a new instance of <code>JoftiException</code> without detail message.
22      */

23     public JoftiException() {
24     }
25     
26     
27     /**
28      * Constructs an instance of <code>JoftiException</code> with the specified detail message.
29      * @param msg the detail message.
30      */

31     public JoftiException(String JavaDoc msg) {
32         super(msg);
33     }
34     
35     public JoftiException(String JavaDoc msg, Throwable JavaDoc error) {
36         super(msg, error);
37     }
38     
39     public JoftiException(Throwable JavaDoc error) {
40         super(error);
41     }
42 }
43
Popular Tags