mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 06:50:54 +07:00
32 lines
612 B
Java
32 lines
612 B
Java
// Generated by delombok at Wed Oct 02 19:12:43 GMT 2019
|
|
|
|
import java.io.IOException;
|
|
|
|
class SneakyThrowsSingle {
|
|
public void test() {
|
|
try {
|
|
System.out.println("test1");
|
|
} catch (final Throwable $ex) {
|
|
throw lombok.Lombok.sneakyThrow($ex);
|
|
}
|
|
}
|
|
|
|
public void test2() {
|
|
try {
|
|
System.out.println("test2");
|
|
throw new IOException();
|
|
} catch (final IOException $ex) {
|
|
throw lombok.Lombok.sneakyThrow($ex);
|
|
}
|
|
}
|
|
|
|
public void test3() {
|
|
try {
|
|
System.out.println("test3");
|
|
throw new IOException();
|
|
} catch (final IOException $ex) {
|
|
throw lombok.Lombok.sneakyThrow($ex);
|
|
}
|
|
}
|
|
}
|