blob: 99c7816e8dd82fba921b19d160a5a9fdf7819c95 [file] [log] [blame]
package com.siyeh.ig.errorhandling;
import com.siyeh.ig.IGInspectionTestCase;
public class ExceptionFromCatchWhichDoesntWrapInspectionTest extends
IGInspectionTestCase {
public void test() throws Exception {
final ExceptionFromCatchWhichDoesntWrapInspection tool = new ExceptionFromCatchWhichDoesntWrapInspection();
tool.ignoreCantWrap = true;
doTest("com/siyeh/igtest/errorhandling/exception_from_catch", tool);
}
}