Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/clra/rowing/RowingException.java


1   /*
2    * Copyright (c) Carnegie Lake Rowing Association 2002. All rights reserved.
3    * Distributed under the GPL license. See doc/COPYING.
4    * $RCSfile: RowingException.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 violation of business rules related to the rowing package.</p>
13  
14   * <p> Note that an invalid transistion within a entity state diagram is
15   * indicated by an entity-specific exception, such as BoatingStateException
16   * or RowingSessionStateException.
17   *
18   * @version $Id: RowingException.java,v 1.3 2003/02/26 03:38:45 rphall Exp $
19   * @author <a href="mailto:rphall@pluto.njcc.com">Rick Hall</a>
20   */
21  public class RowingException extends Exception {
22  
23    public RowingException() {}
24    public RowingException(String msg) { super(msg); }
25  
26  } // RowingException
27  
28  /*
29   * $Log: RowingException.java,v $
30   * Revision 1.3  2003/02/26 03:38:45  rphall
31   * Added copyright and GPL license
32   *
33   * Revision 1.2  2002/02/18 18:04:52  rphall
34   * Ran dos2unix to remove ^M (carriage return) from end of lines
35   *
36   * Revision 1.1.1.1  2002/01/03 21:57:28  rphall
37   * Initial load, 5th try, Jan-03-2002 4:57 PM
38   *
39   * Revision 1.2  2001/12/17 00:40:59  rphall
40   * Documentation
41   *
42   * Revision 1.1  2001/11/18 17:07:08  rphall
43   * Checkpt before major revision of rowing package
44   *
45   */
46