mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 06:12: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 {
|
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 {
|
public static class SmackMessageException extends SmackException {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue