Home | History | Annotate | Download | only in smack

Lines Matching defs:error

30  * A generic exception that is thrown when an error occurs performing an
31 * XMPP operation. XMPP servers can respond to error conditions with an error code
35 * When a stream error occured, the server will send a stream error to the client before
36 * closing the connection. Stream errors are unrecoverable errors. When a stream error
46 private XMPPError error = null;
77 * Cretaes a new XMPPException with the stream error that was the root case of the
78 * exception. When a stream error is received from the server then the underlying
92 * @param error the root cause of the exception.
94 public XMPPException(XMPPError error) {
96 this.error = error;
116 * @param error the root cause of the exception.
119 public XMPPException(String message, XMPPError error, Throwable wrappedThrowable) {
121 this.error = error;
130 * @param error the root cause of the exception.
132 public XMPPException(String message, XMPPError error) {
134 this.error = error;
144 return error;
150 * stream error to the client.
192 if (msg == null && error != null) {
193 return error.toString();
207 if (error != null) {
208 buf.append(error);