Esempio n. 1
0
 /**
  * Rejects geoloc sharing invitation
  *
  * @throws JoynServiceException
  */
 public void rejectInvitation() throws JoynServiceException {
   Logger.i(TAG, "rejectInvitation() entry ");
   try {
     sharingInf.rejectInvitation();
   } catch (Exception e) {
     throw new JoynServiceException(e.getMessage());
   }
 }