blob: 97fecf8fe4c69117b408be86f8250cb84351c4c4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import lombok.SneakyThrows;
class SneakyThrowsPlain {
@lombok.SneakyThrows public void test() {
System.out.println("test1");
}
@SneakyThrows public void test2() {
System.out.println("test2");
}
}
|