aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/SneakyThrowsPlain.java
blob: d5abc478c2089f21a5bf19f36cf6c35bbc2ee419 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class SneakyThrowsPlain {
	public void test() {
		try {
			System.out.println("test1");
		} catch (java.lang.Throwable $ex) {
			throw lombok.Lombok.sneakyThrow($ex);
		}
	}
	
	public void test2() {
		try {
			System.out.println("test2");
		} catch (java.lang.Throwable $ex) {
			throw lombok.Lombok.sneakyThrow($ex);
		}
	}
}