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