Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/methodThrows/afterRemoveSpecific.java
Bas Leijdekkers 9addc5eaf7 java: include parentheses () in text when referring to methods
GitOrigin-RevId: 1cfc8afb26b5db175d865f6bbdc752356040d8bb
2022-08-22 17:58:06 +00:00

16 lines
383 B
Java

// "Remove 'IOException' from 'f()' throws list" "true-preview"
import java.io.FileNotFoundException;
import java.io.IOException;
class A {
/**
* @since 2020.3
* @author me
* @throws Exception first exception
* @throws Exception second exception
* @throws FileNotFoundException file not found
*/
void f() throws /* 1 */ Exception /* 2 */ /* 3 */ /* 4 */ {}
}