From a13829aa74f70b82c429b53de684a606e6cf301b Mon Sep 17 00:00:00 2001 From: Florian Schmaus Date: Sun, 10 Feb 2019 21:55:07 +0100 Subject: [PATCH] Add javadoc to Smack(Message|Wrapped)Exception --- .../main/java/org/jivesoftware/smack/SmackException.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/smack-core/src/main/java/org/jivesoftware/smack/SmackException.java b/smack-core/src/main/java/org/jivesoftware/smack/SmackException.java index cec724682..5c1328b1a 100644 --- a/smack-core/src/main/java/org/jivesoftware/smack/SmackException.java +++ b/smack-core/src/main/java/org/jivesoftware/smack/SmackException.java @@ -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 { /**