62636465666768697071
} @Override public void remove(Genre genre) throws JCollectionException { if (!this.contains(genre)){ throw new JCollectionException("Specified genre is not part of the collection!"); } else { this.genres.remove(genre); } }