Source code: nice/tools/testsuite/CompilerBugException.java
1 /**************************************************************************/
2 /* NICE Testsuite */
3 /* A testsuite for the Nice programming language */
4 /* (c) Alex Greif 2002 */
5 /* */
6 /* This program is free software; you can redistribute it and/or modify */
7 /* it under the terms of the GNU General Public License as published by */
8 /* the Free Software Foundation; either version 2 of the License, or */
9 /* (at your option) any later version. */
10 /* */
11 /**************************************************************************/
12
13 package nice.tools.testsuite;
14
15
16
17
18 /**
19 * This exception is thrown when a bug occurs in the compiler.
20 *
21 * @author Alex Greif <a href="mailto:alex.greif@web.de">alex.greif@web.de</a>
22 * @version $Id: CompilerBugException.java,v 1.4 2003/02/19 18:30:30 bonniot Exp $
23 */
24 public class CompilerBugException extends Exception {
25
26 public CompilerBugException(String message) {
27 super(message);
28 }
29
30 }
31
32 // Local Variables:
33 // tab-width: 2
34 // End: