Exemplo n.º 1
0
  /**
   * Returns whether you can resend the transfer.
   *
   * @return boolean
   * @throws RcsPersistentStorageException
   * @throws RcsGenericException
   */
  public boolean isAllowedToResendTransfer()
      throws RcsPersistentStorageException, RcsGenericException {
    try {
      return mTransferInf.isAllowedToResendTransfer();

    } catch (Exception e) {
      RcsPersistentStorageException.assertException(e);
      throw new RcsGenericException(e);
    }
  }