aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/NonNullWithAlternateException.java
blob: c47f5727535caec166b9fc1dbe21490b40c3011c (plain)
1
2
3
4
5
6
7
8
9
//CONF: lombok.nonNull.exceptionType = IllegalArgumentException

public class NonNullWithAlternateException {
	@lombok.NonNull @lombok.Setter private String test;

	public void testMethod(@lombok.NonNull String arg) {
		System.out.println(arg);
	}
}