public IITPlaylist item(long index) throws SourceDeletedException {
try {
DispatchObject dispatch = super.itemDispatchObject(index);
return ITPlaylistImpl.newIITPlaylist(dispatch);
} catch (ITUNES_E_OBJECTDELETED e) {
throw new SourceDeletedException();
} catch (ObjectDeletedException e) {
throw new SourceDeletedException();
}
}