01: /*
02: * @(#)ClassFileException.java 1.2 04/12/06
03: *
04: * Copyright (c) 1997-2003 Sun Microsystems, Inc. All Rights Reserved.
05: *
06: * See the file "LICENSE.txt" for information on usage and redistribution of
07: * this file, and for a DISCLAIMER OF ALL WARRANTIES.
08: */
09: package pnuts.compiler;
10:
11: public class ClassFileException extends RuntimeException {
12: public ClassFileException() {
13: }
14:
15: public ClassFileException(String msg) {
16: super(msg);
17: }
18: }
|