blob: 95ab11405e91902d608d1fc5b1a4a3afaa24f22d (
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
|
import java.awt.AWTException;
import java.io.IOException;
import java.util.Random;
class SneakyThrowsMultiple {
@lombok.SneakyThrows({IOException.class,Throwable.class})
public void test() {
System.out.println("test1");
throw new IOException();
}
@lombok.SneakyThrows({AWTException.class,IOException.class})
public void test2() {
System.out.println("test2");
if (new Random().nextBoolean()) {
throw new IOException();
}
else {
throw new AWTException("WHAT");
}
}
@lombok.SneakyThrows(value={IOException.class,Throwable.class})
public void test3() {
System.out.println("test3");
throw new IOException();
}
}
|