public void setSortAlbumArtist(String albumArtist) throws TrackDeletedException, TrackLockedException {
try {
this.iTunesCom.setProperty("SortAlbumArtist", albumArtist);
} catch (ITUNES_E_OBJECTDELETED e) {
throw new TrackDeletedException(this);
} catch (ITUNES_E_OBJECTLOCKED e) {
throw new TrackLockedException(this);
}
}