mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-29 08:20:55 +07:00
15 lines
395 B
Java
15 lines
395 B
Java
// "Add exception to method signature" "true-preview"
|
|
class C {
|
|
static class E1 extends Exception { }
|
|
static class E2 extends Exception { }
|
|
|
|
static class MyResource implements AutoCloseable {
|
|
public void doSomething() throws E1 { }
|
|
public void close() throws E2 { }
|
|
}
|
|
|
|
void m() throws E1, E2 {
|
|
try (MyResource r = new MyResource()) {
|
|
}
|
|
}
|
|
} |