From 3793f135f99eb88506ac98010d07f18e3c33c7ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Hohwiller?= Date: Mon, 25 Dec 2023 15:17:17 +0100 Subject: [PATCH] JavaDoc --- .../io/github/mmm/base/exception/ApplicationException.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/main/java/io/github/mmm/base/exception/ApplicationException.java b/core/src/main/java/io/github/mmm/base/exception/ApplicationException.java index de1f974..77cbd6d 100644 --- a/core/src/main/java/io/github/mmm/base/exception/ApplicationException.java +++ b/core/src/main/java/io/github/mmm/base/exception/ApplicationException.java @@ -44,7 +44,7 @@ public ApplicationException(String message) { /** * The constructor. * - * @param message the {@link #getMessage() message} describing the problem briefly. + * @param message the {@link #getLocalizedMessage() message} describing the problem briefly. */ public ApplicationException(Localizable message) { @@ -67,7 +67,7 @@ public ApplicationException(String message, Throwable cause) { /** * The constructor. * - * @param message the {@link #getMessage() message} describing the problem briefly. + * @param message the {@link #getLocalizedMessage() message} describing the problem briefly. * @param cause is the {@link #getCause() cause} of this exception. */ public ApplicationException(Localizable message, Throwable cause) { @@ -91,7 +91,7 @@ protected ApplicationException(String message, Throwable cause, UUID uuid) { /** * The constructor. * - * @param message the {@link #getMessage() message} describing the problem briefly. + * @param message the {@link #getLocalizedMessage() message} describing the problem briefly. * @param cause is the {@link #getCause() cause} of this exception. May be null. * @param uuid the explicit {@link #getUuid() UUID} or null to initialize by default (from given * {@link Throwable} or as new {@link UUID}).