Home | History | Annotate | Download | only in smack

Lines Matching refs:XMPPError

24 import org.jivesoftware.smack.packet.XMPPError;
32 * and textual description of the problem, which are encapsulated in the XMPPError
33 * class. When appropriate, an XMPPError instance is attached instances of this exception.<p>
40 * @see XMPPError
46 private XMPPError error = null;
89 * Cretaes a new XMPPException with the XMPPError that was the root case of the
94 public XMPPException(XMPPError error) {
112 * Creates a new XMPPException with a description of the exception, an XMPPError,
119 public XMPPException(String message, XMPPError error, Throwable wrappedThrowable) {
132 public XMPPException(String message, XMPPError error) {
138 * Returns the XMPPError asscociated with this exception, or <tt>null</tt> if there
141 * @return the XMPPError asscociated with this exception.
143 public XMPPError getXMPPError() {
190 // If the message was not set, but there is an XMPPError, return the
191 // XMPPError as the message.