mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
17 lines
388 B
Java
17 lines
388 B
Java
// "Surround with try/catch" "true"
|
|
class C {
|
|
static class E1 extends Exception { }
|
|
|
|
static class MyResource implements AutoCloseable {
|
|
public void close() throws E1 { }
|
|
}
|
|
|
|
void m() {
|
|
try {
|
|
try (MyResource r = new MyResource()) {
|
|
}
|
|
} catch (E1 e1) {
|
|
<selection>e1.printStackTrace();</selection>
|
|
}
|
|
}
|
|
} |