Beispiel #1
0
 /**
  * Pauses the file transfer
  *
  * @throws RcsPermissionDeniedException
  * @throws RcsGenericException
  */
 public void pauseTransfer() throws RcsPermissionDeniedException, RcsGenericException {
   try {
     mTransferInf.pauseTransfer();
   } catch (Exception e) {
     RcsPermissionDeniedException.assertException(e);
     RcsUnsupportedOperationException.assertException(e);
     throw new RcsGenericException(e);
   }
 }