import edu.neu.ccs.gui.*;

public class BadGUI
    extends DisplayPanel
{
    public BadGUI() {
        throw new RuntimeException("This is a sample exception");
    }
}

