Source code: edu/iicm/xpg/statemachine/DuplicateStateException.java
1 /***********************************************************************
2 * @(#)$RCSfile: DuplicateStateException.java,v $ $Revision: 1.1.1.1 $ $Date: 2002/01/29 10:43:14 $
3 *
4 * Copyright (c) 2001 IICM, Graz University of Technology
5 * Schiesstattgasse 4a, A-8010 Graz, Austria.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU Lesser General Public License (LGPL)
9 * as published by the Free Software Foundation; either version 2.1 of
10 * the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this program; if not, write to the
19 * Free Software Foundation, Inc.,
20 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 ***********************************************************************/
22
23
24 package edu.iicm.xpg.statemachine;
25
26 //----------------------------------------------------------------------
27 /**
28 * @author Klaus Schmaranz
29 * @version $Revision: 1.1.1.1 $
30 */
31
32 public class DuplicateStateException extends Exception
33 {
34 //----------------------------------------------------------------------
35 /**
36 */
37
38 public DuplicateStateException()
39 {
40 super();
41 }
42
43 //----------------------------------------------------------------------
44 /**
45 * @param msg the exception message
46 */
47
48 public DuplicateStateException(String msg)
49 {
50 super(msg);
51 }
52
53 }
54
55