Newer
Older
commitconf24 / snippets / Movie.java
@Antonio Muñoz Antonio Muñoz on 28 Mar 2024 215 bytes updated
package snippets;

public record Movie(String title, int year, int duration) {

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