View Javadoc

1   package org.wcb.exceptions;
2   /***
3    * Copyright (C) 1999  Walter Bogaardt
4    *
5    * This library is free software; you can redistribute it and/or
6    * modify it under the terms of the GNU Lesser General Public
7    * License as published by the Free Software Foundation; either
8    * version 2 of the License, or (at your option) any later version.
9    *
10   * This library is distributed in the hope that it will be useful,
11   * but WITHOUT ANY WARRANTY; without even the implied warranty of
12   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13   * Lesser General Public License for more details.
14   *
15   * You should have received a copy of the GNU Lesser General Public
16   * License along with this library; if not, write to the Free Software
17   * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
18   *
19   * $Log: SerialConnectionException.java,v $
20   * Revision 1.2  2003/10/10 21:39:07  wbogaardt
21   * modified macro triggers to use calendar in stead of strings
22   *
23   */
24  
25  
26  public class SerialConnectionException extends Exception {
27  
28      /***
29       * Constructs a <code>SerialConnectionException</code>
30       * with the specified detail message.
31       *
32       * @param   str - the detail message.
33       */
34      public SerialConnectionException(String str) {
35          super(str);
36      }
37  
38      /***
39       * Constructs a <code>SerialConnectionException</code>
40       * with no detail message.
41       */
42      public SerialConnectionException() {
43          super();
44      }
45  }
46