blob: 82eda4110fdb6de9b3699b6956e2af51c6011029 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
import java.awt.AWTException;
import java.io.IOException;
import java.util.Random;
class SneakyThrowsMultiple {
SneakyThrowsMultiple() {
super();
}
public @lombok.SneakyThrows({IOException.class, Throwable.class}) void test() {
try
{
try
{
System.out.println("test1");
throw new IOException();
}
catch (final IOException $ex) {
throw lombok.Lombok.sneakyThrow($ex);
}
}
catch (final Throwable $ex) {
throw lombok.Lombok.sneakyThrow($ex);
}
}
public @lombok.SneakyThrows({AWTException.class, IOException.class}) void test2() {
try
{
try
{
System.out.println("test2");
if (new Random().nextBoolean())
{
throw new IOException();
}
else
{
throw new AWTException("WHAT");
}
}
catch (final AWTException $ex) {
throw lombok.Lombok.sneakyThrow($ex);
}
}
catch (final IOException $ex) {
throw lombok.Lombok.sneakyThrow($ex);
}
}
public @lombok.SneakyThrows(value = {IOException.class, Throwable.class}) void test3() {
try
{
try
{
System.out.println("test3");
throw new IOException();
}
catch (final IOException $ex) {
throw lombok.Lombok.sneakyThrow($ex);
}
}
catch (final Throwable $ex) {
throw lombok.Lombok.sneakyThrow($ex);
}
}
}
|