package snippets; public record Movie(String title, int year, int duration) { public Movie { if (title == null || title.isEmpty()) { throw new IllegalArgumentException(); } } }