Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/addRuntimeExceptionToThrows/after1.java
Bas Leijdekkers 5dda5cdb12 Java: improve intention text
GitOrigin-RevId: 72e2cbc6c1927af08401835f7e9ee4814ac26dea
2023-08-25 14:51:57 +00:00

8 lines
167 B
Java

// "Add 'throws RuntimeException' to method signature" "true-preview"
class a {
int f() throws RuntimeException {
throw new RuntimeException()<caret>;
}
}