Newer
Older
commitconf24 / snippets / Movie.java
public record Movie(String title, int year, int duration) {

    public Movie {
        if (title == null || title.isEmpty()) {
            throw new IllegalArgumentException();
        }
    }
}