Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/suppress15Inspections/beforeDuplicatesThrowsOnWrongException.java
T

7 lines
198 B
Java

// "Suppress for method" "false"
import java.io.FileNotFoundException;
import java.io.IOException;
class Main {
public void test() throws Exce<caret>ption, FileNotFoundException, IOException {}
}