aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/NonNullWithSneakyThrows.java
blob: cd7f809211f7fcefd0751875e578d68647ce49c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//version 8:
class NonNullWithSneakyThrows {
	void test(@lombok.NonNull String in) {
		try {
			if (in == null) {
				throw new java.lang.NullPointerException("in is marked non-null but is null");
			}
			System.out.println(in);
		} catch (final java.lang.Throwable $ex) {
			throw lombok.Lombok.sneakyThrow($ex);
		}
	}
}