01: /**************************************************************************/
02: /* B O S S A */
03: /* A simple imperative object-oriented research language */
04: /* (c) Daniel Bonniot 1999 */
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 mlsub.typing;
12:
13: /**
14: * Unexpected error.
15: *
16: * Denotes a bug in the package, or a misusage of it.
17: *
18: * @author Daniel Bonniot
19: */
20:
21: public class InternalError extends Error {
22: public InternalError(String msg) {
23: super(msg);
24: }
25: }
|