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

8 lines
154 B
Java

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