1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-16 16:44:48 +02:00

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

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