Skip to content

Commit

Permalink
JavaDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
hohwille committed Dec 25, 2023
1 parent 0fc822b commit 3793f13
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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) {

Expand All @@ -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) {
Expand All @@ -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 <code>null</code>.
* @param uuid the explicit {@link #getUuid() UUID} or <code>null</code> to initialize by default (from given
* {@link Throwable} or as new {@link UUID}).
Expand Down

0 comments on commit 3793f13

Please sign in to comment.