From 27c444f3b445d272ce833d034e3e2bcae5f8cada Mon Sep 17 00:00:00 2001 From: medrias Date: Sat, 11 Jan 2025 23:52:18 +0100 Subject: [PATCH] test: adjusted BadCommandUsage javadoc --- .../fr/pandacube/lib/commands/BadCommandUsage.java | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/pandalib-commands/src/main/java/fr/pandacube/lib/commands/BadCommandUsage.java b/pandalib-commands/src/main/java/fr/pandacube/lib/commands/BadCommandUsage.java index 59335b5..437fab2 100644 --- a/pandalib-commands/src/main/java/fr/pandacube/lib/commands/BadCommandUsage.java +++ b/pandalib-commands/src/main/java/fr/pandacube/lib/commands/BadCommandUsage.java @@ -11,27 +11,31 @@ import java.util.logging.Logger; */ public class BadCommandUsage extends RuntimeException { - /** Constructs a new runtime exception with no message or cause. + /** + * Constructs a new runtime exception with no message or cause. */ public BadCommandUsage() { super(); } - /** Constructs a new runtime exception with the specified cause. + /** + * Constructs a new runtime exception with the specified cause. * @param cause the cause. */ public BadCommandUsage(Throwable cause) { super(cause); } - /** Constructs a new runtime exception with the specified message. + /** + * Constructs a new runtime exception with the specified message. * @param message the message. */ public BadCommandUsage(String message) { super(message); } - /** Constructs a new runtime exception with the specified message and cause. + /** + * Constructs a new runtime exception with the specified message and cause. * @param message the message. * @param cause the cause. */