Package com.jitcaforwin.extended.exceptions

Examples of com.jitcaforwin.extended.exceptions.TrackReadOnly


   */
  public void setComposer(String sortComposer) throws TrackReadOnly{
    try {
      this.itTrack.setSortComposer(sortComposer);
    } catch (TrackLockedException e) {
      throw new TrackReadOnly(this.track);
    } catch (TrackDeletedException e) {
      throw new ITObjectDeletedError(track);
    }
  }
View Full Code Here


   */
  public void setShow(String sortShow) throws TrackReadOnly{
    try {
      this.itTrack.setSortShow(sortShow);
    } catch (TrackLockedException e) {
      throw new TrackReadOnly(this.track);
    } catch (TrackDeletedException e) {
      throw new ITObjectDeletedError(track);
    }
  }
View Full Code Here

TOP

Related Classes of com.jitcaforwin.extended.exceptions.TrackReadOnly

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.