aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/SneakyThrowsSingle.java
blob: 8901f827008a44b15ec587db34720272bf452f1e (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
import java.io.IOException;
class SneakyThrowsSingle {
	public void test() {
		try {
			System.out.println("test1");
		} catch (final Throwable $ex) {
			throw lombok.Lombok.sneakyThrow($ex);
		}
	}
	public void test2() {
		try {
			System.out.println("test2");
			throw new IOException();
		} catch (final IOException $ex) {
			throw lombok.Lombok.sneakyThrow($ex);
		}
	}
	public void test3() {
		try {
			System.out.println("test3");
			throw new IOException();
		} catch (final IOException $ex) {
			throw lombok.Lombok.sneakyThrow($ex);
		}
	}
}