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