mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 12:02:05 +01:00
Add javadoc to Smack(Message|Wrapped)Exception
This commit is contained in:
parent
394f3d133a
commit
a13829aa74
1 changed files with 8 additions and 0 deletions
|
@ -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 {
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue