1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-11-22 12:02:05 +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 {
/**
*