Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/addRuntimeExceptionToThrows/after1.java
T

8 lines
154 B
Java

// "Add Runtime Exception(s) to Method Signature" "true"
class a {
int f() throws RuntimeException {
throw new RuntimeException()<caret>;
}
}