Add javadoc to Smack(Message|Wrapped)Exception

This commit is contained in:
Florian Schmaus 2019-02-10 21:55:07 +01:00
parent 394f3d133a
commit a13829aa74
1 changed files with 8 additions and 0 deletions

View File

@ -357,6 +357,10 @@ public abstract class SmackException extends Exception {
}
}
/**
* A Smack exception wrapping another exception. Note that usage of this class is consider bad practice. This class
* will eventually be marked deprecated and removed.
*/
public static class SmackWrappedException extends SmackException {
/**
@ -373,6 +377,10 @@ public abstract class SmackException extends Exception {
}
}
/**
* A Smack exception wrapping a text message. Note that usage of this class is consider bad practice. This class
* will eventually be marked deprecated and removed.
*/
public static class SmackMessageException extends SmackException {
/**