1 /*2 * CVSGrab3 * 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 version11 * 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. 200416 */17 public class InvalidVersionException extends DetectException {18 19 /**20 * 21 */22 private static final long serialVersionUID = 6577897713989472823L;23 24 /**25 * Constructor for InvalidVersionException26 * @param message27 */28 public InvalidVersionException(String message) {29 super(message);30 }31 32 }33