mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 06:12:05 +01:00
Add javadoc describing the XMPPErrorException class
This commit is contained in:
parent
23bb5c5625
commit
61be4d768d
1 changed files with 4 additions and 0 deletions
|
@ -69,6 +69,10 @@ public abstract class XMPPException extends Exception {
|
||||||
super(message, wrappedThrowable);
|
super(message, wrappedThrowable);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An exception caused by an XMPP error stanza response on the protocol level. You can examine the underlying
|
||||||
|
* {@link StanzaError} by calling {@link #getStanzaError()}.
|
||||||
|
*/
|
||||||
public static class XMPPErrorException extends XMPPException {
|
public static class XMPPErrorException extends XMPPException {
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue