mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-25 20:01:38 +00:00
14 lines
304 B
Plaintext
14 lines
304 B
Plaintext
import lombok.NonNull;
|
|
|
|
public class NonNullExample extends Something {
|
|
private String name;
|
|
|
|
public NonNullExample(@NonNull Person person) {
|
|
super("Hello");
|
|
if (person == null) {
|
|
throw new NullPointerException("person is marked non-null but is null");
|
|
}
|
|
this.name = person.getName();
|
|
}
|
|
}
|