1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-11-21 22:02:06 +01:00

Add javadoc describing the XMPPErrorException class

This commit is contained in:
Florian Schmaus 2018-06-20 15:58:54 +02:00
parent 23bb5c5625
commit 61be4d768d

View file

@ -69,6 +69,10 @@ public abstract class XMPPException extends Exception {
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 {
/**
*