Package com.jitcaforwin.basic.api.exceptions

Examples of com.jitcaforwin.basic.api.exceptions.ObjectDeletedException


  public long getTrackID() throws ObjectDeletedException {
    try {
      return this.iTunesCom.getPropertyAsLong("TrackID");
    } catch (ITUNES_E_OBJECTDELETED e) {
      throw new ObjectDeletedException(this);
    }
  }
View Full Code Here


  public long getTrackDatabaseID() throws ObjectDeletedException {
    try {
      return this.iTunesCom.getPropertyAsLong("TrackDatabaseID");
    } catch (ITUNES_E_OBJECTDELETED e) {
      throw new ObjectDeletedException(this);
    }
  }
View Full Code Here

  public long getCount() throws ObjectDeletedException{
    try{ResultObject count = this.iTunesCom.callFunction("Count");
    return count.getLong();
    } catch (ITUNES_E_OBJECTDELETED e){
      throw new ObjectDeletedException();
    }
  }
View Full Code Here

TOP

Related Classes of com.jitcaforwin.basic.api.exceptions.ObjectDeletedException

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.