public void setDiscNumber(long discNumber) throws TrackDeletedException, TrackLockedException {
try {
this.iTunesCom.setProperty("DiscNumber", discNumber);
} catch (ITUNES_E_OBJECTDELETED e) {
throw new TrackDeletedException(this);
} catch (ITUNES_E_OBJECTLOCKED e) {
throw new TrackLockedException(this);
}
}