* @throws JitcaException
* if an error occurs.
*/
public void remove(Track trackToRemove) throws TrackNotFoundException {
if (!this.contains(trackToRemove)) {
throw new TrackNotFoundException("The track, which should be deleted. is not part of the collection.");
}
this.tracks.remove(trackToRemove);
}