HomeSort by relevance Sort by last modified time
    Searched defs:XMPPException (Results 1 - 6 of 6) sorted by null

  /external/smack/src/org/jivesoftware/smack/
XMPPException.java 37 * is sent to the client an XMPPException will be thrown containing the StreamError sent
43 public class XMPPException extends Exception {
50 * Creates a new XMPPException.
52 public XMPPException() {
57 * Creates a new XMPPException with a description of the exception.
61 public XMPPException(String message) {
66 * Creates a new XMPPException with the Throwable that was the root cause of the
71 public XMPPException(Throwable wrappedThrowable) {
77 * Cretaes a new XMPPException with the stream error that was the root case of the
83 public XMPPException(StreamError streamError)
    [all...]
BOSHConnection.java 36 import org.jivesoftware.smack.XMPPException;
149 public void connect() throws XMPPException {
206 throw new XMPPException("Can't connect to " + getServiceName(), e);
226 throw new XMPPException(
305 throws XMPPException {
373 public void loginAnonymously() throws XMPPException {
726 catch (XMPPException e) {
  /external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/
Socks5BytestreamRequest.java 21 import org.jivesoftware.smack.XMPPException;
186 * @throws XMPPException if connection to all SOCKS5 proxies failed or if stream is invalid.
189 public Socks5BytestreamSession accept() throws XMPPException, InterruptedException {
239 catch (XMPPException e) {
270 * @throws XMPPException XMPP exception containing the XMPP error
272 private void cancelRequest() throws XMPPException {
277 throw new XMPPException(errorMessage, error);
  /external/smack/src/org/jivesoftware/smackx/filetransfer/
FileTransferNegotiator.java 36 import org.jivesoftware.smack.XMPPException;
256 * @throws XMPPException If there are either no stream methods contained in the packet, or
260 FileTransferRequest request) throws XMPPException {
272 throw new XMPPException(errorMessage, error);
281 catch (XMPPException e) {
307 throws XMPPException {
324 throw new XMPPException(error.getMessage(), error);
396 * @throws XMPPException Thrown if there is an error negotiating the file transfer.
400 final String desc, int responseTimeout) throws XMPPException {
430 throw new XMPPException(iqResponse.getError());
    [all...]
  /external/smack/src/org/jivesoftware/smackx/commands/
AdHocCommandManager.java 207 * @throws XMPPException if the operation failed for some reason.
209 public DiscoverItems discoverCommands(String jid) throws XMPPException {
219 * @throws XMPPException if the operation failed for some reason.
221 public void publishCommands(String jid) throws XMPPException {
500 catch (XMPPException e) {
615 catch (XMPPException e) {
680 * @throws XMPPException if there is problem creating the new instance.
683 throws XMPPException
695 throw new XMPPException(new XMPPError(
700 throw new XMPPException(new XMPPError(
    [all...]
  /external/smack/src/org/jivesoftware/smackx/packet/
VCard.java 40 import org.jivesoftware.smack.XMPPException;
511 * @throws XMPPException thrown if there was an issue setting the VCard in the server.
513 public void save(Connection connection) throws XMPPException {
526 throw new XMPPException("No response from server on status set.");
529 throw new XMPPException(response.getError());
537 public void load(Connection connection) throws XMPPException {
547 public void load(Connection connection, String user) throws XMPPException {
554 private void doLoad(Connection connection, String user) throws XMPPException {
566 throw new XMPPException(errorMessage, new XMPPError(
570 throw new XMPPException(result.getError())
    [all...]

Completed in 104 milliseconds