116117118119120121122123124125
/** * {@inheritDoc} */ public PlaylistCollection getPlaylists(){ try { return new PlaylistCollection(this, this.itSource.getPlaylists()); } catch (SourceDeletedException e) { throw new IPodRemoved(); } }
188189190191192193194195196197
* {@inheritDoc} */ @Override public PlaylistCollection getPlaylists() { try { return new PlaylistCollection(super.source, this.itTrack.getPlaylists()); } catch (TrackDeletedException e) { throw new ITObjectDeletedError(this); } }