public Book()

in src/com/example/library/Book.java [11:16]


    public Book(Author author, Genre genre, Date publishedOn, String name) {
        this.author = author;
        this.genre = genre;
        this.name = name;
        this.isTaken = false;
    }