01: /**************************************************************************/
02: /* N I C E */
03: /* A high-level object-oriented research language */
04: /* (c) Daniel Bonniot 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 gnu.bytecode;
12:
13: /**
14: The error thrown when an attempt to generate invalid bytecode is made.
15:
16: @version $Date: 2003/08/25 18:09:10 $
17: @author ()
18: */
19:
20: public class VerificationError extends Error {
21: VerificationError(String message) {
22: super(message);
23: }
24: }
|