Source code: com/clra/visitor/ApplicantException.java
1 /*
2 * Copyright (c) Carnegie Lake Rowing Association 2002. All rights reserved.
3 * Distributed under the GPL license. See doc/COPYING.
4 * $RCSfile: ApplicantException.java,v $
5 * $Date: 2003/02/26 03:38:46 $
6 * $Revision: 1.2 $
7 */
8
9 package com.clra.visitor;
10
11 /**
12 * @author <a href="mailto:donaldzhu@sympatico.ca">Angela Yue</a>
13 */
14 public class ApplicantException extends Exception {
15
16 public ApplicantException() {}
17 public ApplicantException(String msg) { super(msg); }
18
19 } // ApplicantException
20