* @throws rocks.xmpp.core.stanza.model.StanzaException If the server returned a stanza error.
* @throws rocks.xmpp.core.session.NoResponseException If the server did not respond.
* @see <a href="http://xmpp.org/extensions/xep-0013.html#retrieve-specific">2.4 Retrieving Specific Messages</a>
*/
public void requestMessage(String id) throws XmppException {
xmppSession.query(new IQ(IQ.Type.GET, new OfflineMessage(new OfflineMessage.Item(id, OfflineMessage.Item.Action.VIEW))));
}