KickJava   Java API By Example, From Geeks To Geeks.

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


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  * Exception throw when the detect ethod on the WebInterface doesn't locate the
11  * version marker on the page.
12  *
13  * @author <a HREF="mailto:ludovicc@users.sourceforge.net">Ludovic Claude</a>
14  * @version $Revision: 1.3 $ $Date: 2005/06/22 23:38:16 $
15  * @created on 3 fevr. 2004
16  */

17 public class MarkerNotFoundException extends DetectException {
18
19     /**
20      *
21      */

22     private static final long serialVersionUID = 7312995762444322183L;
23
24     /**
25      * Constructor for MarkerNotFoundException
26      */

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

35     public MarkerNotFoundException(String JavaDoc message) {
36         super(message);
37     }
38
39 }
40
Popular Tags