KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sourceforge > cvsgrab > DetectException


1 /*
2  * CVSGrab
3  * Author: Ludovic Claude (ludovicc@users.sourceforge.net)
4  * Distributable under BSD license.
5  */

6
7 package net.sourceforge.cvsgrab;
8
9 /**
10  * Base class for the exceptions thrown by the detect method on the WebInterface class.
11  *
12  * @author <a HREF="mailto:ludovicc@users.sourceforge.net">Ludovic Claude</a>
13  * @version $Revision: 1.3 $ $Date: 2005/06/22 23:38:16 $
14  * @created on 3 f�vr. 2004
15  */

16 public class DetectException extends Exception JavaDoc {
17
18     /**
19      *
20      */

21     private static final long serialVersionUID = 2152735201329285610L;
22
23     /**
24      * Constructor for DetectException
25      */

26     public DetectException() {
27         super();
28     }
29
30     /**
31      * Constructor for DetectException
32      * @param message
33      */

34     public DetectException(String JavaDoc message) {
35         super(message);
36     }
37
38     /**
39      * Constructor for DetectException
40      * @param cause
41      */

42     public DetectException(Throwable JavaDoc cause) {
43         super(cause);
44     }
45
46     /**
47      * Constructor for DetectException
48      * @param message
49      * @param cause
50      */

51     public DetectException(String JavaDoc message, Throwable JavaDoc cause) {
52         super(message, cause);
53     }
54
55 }
56
Popular Tags