public void setTitle(String title) throws TrackReadOnly {
try {
this.title = title;
this.itTrack.setName(title);
} catch (ObjectDeletedException e) {
throw new ITObjectDeletedError(this);
} catch (ObjectLockedException e) {
throw new TrackReadOnly(this);
}
}