Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/addRuntimeExceptionToThrows/before2.java
2010-06-25 12:46:40 +04:00

8 lines
154 B
Java

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