Files
openide/java/java-tests/testData/codeInsight/surroundWith/TryCatch1_after.java
T
2022-05-02 16:17:23 +00:00

9 lines
171 B
Java

class A{
void foo(){
try {
f();
} catch (Exception e) {
<selection>throw new RuntimeException(e);</selection>
}
}
}