Files
Mikhail Pyltsin 55c9701fc8 [java-completion] IJ-CR-129761 IDEA-349764 Suggest a full catch section
- catch sections are added automatically

GitOrigin-RevId: 75aed0b2281ffa0e412b1eaecf90caf406ba0182
2024-04-03 20:02:54 +00:00

9 lines
151 B
Java

class X{
public void test() {
try {
} catch (Exception e) {
<selection>throw new RuntimeException(e);</selection><caret>
}
}
}