Add getter for the stanza associated with the exception

Fixes SMACK-916
This commit is contained in:
Ingo Bauersachs 2021-10-17 16:06:41 +02:00
parent ec456399b5
commit 27ff37fa98
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.
*