blob: 047645dde819577ea9e44d1db7b4dd7e3f7ec524 [file] [log] [blame]
package com.siyeh.ig.errorhandling;
import com.siyeh.ig.IGInspectionTestCase;
public class CaughtExceptionImmediatelyRethrownInspectionTest extends IGInspectionTestCase {
public void test() throws Exception {
doTest("com/siyeh/igtest/errorhandling/caught_exception_immediately_rethrown", new CaughtExceptionImmediatelyRethrownInspection());
}
}