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 throw when the detect ethod on the WebInterface doesn't locate the11 * 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. 200416 */17 public class MarkerNotFoundException extends DetectException {18 19 /**20 * 21 */22 private static final long serialVersionUID = 7312995762444322183L;23 24 /**25 * Constructor for MarkerNotFoundException26 */27 public MarkerNotFoundException() {28 super();29 }30 31 /**32 * Constructor for MarkerNotFoundException33 * @param message34 */35 public MarkerNotFoundException(String message) {36 super(message);37 }38 39 }40