blob: 6e75a75c2478b807ba69dbf6c2e42411b8a2bb7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
import lombok.SneakyThrows;
class SneakyThrowsPlain {
SneakyThrowsPlain() {
super();
}
public @lombok.SneakyThrows void test() {
try
{
System.out.println("test1");
}
catch (final java.lang.Throwable $ex) {
throw lombok.Lombok.sneakyThrow($ex);
}
}
public @SneakyThrows void test2() {
try
{
System.out.println("test2");
}
catch (final java.lang.Throwable $ex) {
throw lombok.Lombok.sneakyThrow($ex);
}
}
}
|