* @throws rocks.xmpp.core.session.NoResponseException If the recipient did not downloaded the file within the timeout.
* @see <a href="http://xmpp.org/extensions/xep-0066.html">XEP-0066: Out of Band Data</a>
*/
public void offerFile(URL url, String description, Jid recipient, long timeout) throws XmppException {
try {
xmppSession.query(new IQ(recipient, IQ.Type.SET, new OobIQ(url, description)), timeout);
} catch (StanzaException e) {
if (e.getStanza().getError().getCondition() instanceof NotAcceptable) {
throw new FileTransferRejectedException();
} else {
throw e;