Merge pull request #500 from jitsi/bugfix/4.4/error-stanzagetter

Add getter for the stanza associated with the exception
This commit is contained in:
Florian Schmaus 2021-10-19 14:29:11 +02:00 committed by GitHub
commit 0fa6d88575
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 0 deletions

View File

@ -120,6 +120,16 @@ public abstract class XMPPException extends Exception {
return error;
}
/**
* Gets the stanza associated with this exception.
*
* @return the stanza from which this exception was created or {@code null} if the exception is not from a
* stanza.
*/
public Stanza getStanza() {
return stanza;
}
/**
* Get the request which triggered the error response causing this exception.
*