00001 package de.fub.bytecode.generic; 00002 00003 /** 00004 * Thrown on internal errors. Extends RuntimeException so it hasn't to be declared 00005 * in the throws clause every time. 00006 * 00007 * @version $Id: ClassGenException.java,v 1.1.1.1 2002/01/24 03:41:38 pserver Exp $ 00008 * @author <A HREF="http://www.inf.fu-berlin.de/~dahm">M. Dahm</A> 00009 */ 00010 public class ClassGenException extends RuntimeException { 00011 public ClassGenException() { super(); } 00012 public ClassGenException(String s) { super(s); } 00013 }