import junit.framework.*; import java.lang.Exception; public class SimpleExceptionTest extends TestCase { public SimpleExceptionTest(String name) { super(name); } public void testException() throws Exception { throw new Exception(); } }