Source code: com/clra/rowing/BoatingStateException.java
1 /*
2 * Copyright (c) Carnegie Lake Rowing Association 2002. All rights reserved.
3 * Distributed under the GPL license. See doc/COPYING.
4 * $RCSfile: BoatingStateException.java,v $
5 * $Date: 2003/02/26 03:38:45 $
6 * $Revision: 1.3 $
7 */
8
9 package com.clra.rowing;
10
11 /**
12 * Indicates a boating is in an inconsistent state, or that a boating
13 * operation is invoked in an inappropriate state
14 *
15 * @version $Id: BoatingStateException.java,v 1.3 2003/02/26 03:38:45 rphall Exp $
16 * @author <a href="mailto:rphall@pluto.njcc.com">Rick Hall</a>
17 */
18 public class BoatingStateException extends Exception {
19
20 public BoatingStateException() {}
21 public BoatingStateException(String msg) { super(msg); }
22
23 } // BoatingStateException
24
25 /*
26 * $Log: BoatingStateException.java,v $
27 * Revision 1.3 2003/02/26 03:38:45 rphall
28 * Added copyright and GPL license
29 *
30 * Revision 1.2 2002/02/18 18:03:50 rphall
31 * Ran dos2unix to remove ^M (carriage return) from end of lines
32 *
33 * Revision 1.1.1.1 2002/01/03 21:57:28 rphall
34 * Initial load, 5th try, Jan-03-2002 4:57 PM
35 *
36 * Revision 1.1 2001/11/28 12:21:31 rphall
37 * More specific exception class
38 *
39 */
40