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
1 changed files with 4 additions and 0 deletions

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 {
/**
*