KickJava   Java API By Example, From Geeks To Geeks.

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


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 thrown when the version detected is incompatible with the version
11  * supported by the web interface.
12  *
13  * @author <a HREF="mailto:ludovicc@users.sourceforge.net">Ludovic Claude</a>
14  * @version $Revision: 1.3 $ $Date: 2005/06/22 23:38:15 $
15  * @created on 3 fevr. 2004
16  */

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

22     private static final long serialVersionUID = 6577897713989472823L;
23
24     /**
25      * Constructor for InvalidVersionException
26      * @param message
27      */

28     public InvalidVersionException(String JavaDoc message) {
29         super(message);
30     }
31
32 }
33
Popular Tags