mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-27 20:25:27 +00:00
10 lines
250 B
Java
10 lines
250 B
Java
//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);
|
|
}
|
|
}
|