public void setDescription(String description) throws ArtworkDeletedException, TrackLockedException {
try {
this.iTunesCom.setProperty("Description", description);
} catch (ITUNES_E_OBJECTDELETED e) {
throw new ArtworkDeletedException(this);
} catch (ITUNES_E_OBJECTLOCKED e){
throw new TrackLockedException(null);
}
}