Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix Javadoc warning #86

Merged
merged 1 commit into from
Nov 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public class ErrorWindow extends Dialog {
/**
* Constructs and initializes an ErrorWindow object with the supplied cause and default production mode and i18n.
*
* @param cause: The cause of the error
* @param cause The cause of the error
*/
public ErrorWindow(final Throwable cause) {
this(cause, null, isProductionMode(), ErrorWindowI18n.createDefault());
Expand All @@ -90,8 +90,8 @@ public ErrorWindow(final Throwable cause) {
/**
* Constructs and initializes an ErrorWindow object with the supplied details and and default production mode.
*
* @param cause: The cause of the error
* @param i18n: The internationalization of the ErrorWindow
* @param cause The cause of the error
* @param i18n The internationalization of the ErrorWindow
*/
public ErrorWindow(final Throwable cause, final ErrorWindowI18n i18n) {
this(cause, null, isProductionMode(), i18n);
Expand All @@ -100,8 +100,8 @@ public ErrorWindow(final Throwable cause, final ErrorWindowI18n i18n) {
/**
* Constructs and initializes an ErrorWindow object with the supplied details and default and default production mode and i18n.
*
* @param cause: The cause of the error
* @param errorMessage: An optional error message
* @param cause The cause of the error
* @param errorMessage An optional error message
*/
public ErrorWindow(final Throwable cause, final String errorMessage) {
this(cause, errorMessage, isProductionMode(), ErrorWindowI18n.createDefault());
Expand All @@ -110,9 +110,9 @@ public ErrorWindow(final Throwable cause, final String errorMessage) {
/**
* Constructs and initializes an ErrorWindow object with the supplied details and default production mode.
*
* @param cause: The cause of the error
* @param errorMessage: An optional error message
* @param i18n: The internationalization of the ErrorWindow
* @param cause The cause of the error
* @param errorMessage An optional error message
* @param i18n The internationalization of the ErrorWindow
*/
public ErrorWindow(final Throwable cause, final String errorMessage, final ErrorWindowI18n i18n) {
this(cause, errorMessage, isProductionMode(), i18n);
Expand All @@ -121,9 +121,10 @@ public ErrorWindow(final Throwable cause, final String errorMessage, final Error
/**
* Constructs and initializes an ErrorWindow object with the supplied details and default i18n.
*
* @param cause: The cause of the error
* @param errorMessage: An optional error message
* @param productionMode: The mode in which the Application is running. If true, a code is displayed with error details, else debug information is shown
* @param cause The cause of the error
* @param errorMessage An optional error message
* @param productionMode The mode in which the Application is running. If true, a code is
* displayed with error details, else debug information is shown
*/
public ErrorWindow(final Throwable cause, final String errorMessage, boolean productionMode) {
this(cause, errorMessage, productionMode, ErrorWindowI18n.createDefault());
Expand All @@ -132,10 +133,11 @@ public ErrorWindow(final Throwable cause, final String errorMessage, boolean pro
/**
* Constructs and initializes an ErrorWindow object with the supplied details.
*
* @param cause: The cause of the error
* @param errorMessage: An optional error message
* @param productionMode: The mode in which the Application is running. If true, a code is displayed with error details, else debug information is shown
* @param i18n: The internationalization of the ErrorWindow
* @param cause The cause of the error
* @param errorMessage An optional error message
* @param productionMode The mode in which the Application is running. If true, a code is
* displayed with error details, else debug information is shown
* @param i18n The internationalization of the ErrorWindow
*/
public ErrorWindow(
final Throwable cause,
Expand Down Expand Up @@ -179,8 +181,8 @@ public ErrorWindow(ErrorDetails errorDetails, boolean productionMode) {
* Constructs and initializes an ErrorWindow object with the supplied error details and internationalization.
* This constructor allows for provision of additional information, which is an ErrorDetails object.
*
* @param errorDetails: The ErrorDetails object
* @param i18n: The internationalization of the ErrorWindow
* @param errorDetails The ErrorDetails object
* @param i18n The internationalization of the ErrorWindow
*/
public ErrorWindow(ErrorDetails errorDetails, final ErrorWindowI18n i18n) {
this(errorDetails.getThrowable(), errorDetails.getCause(), i18n);
Expand Down
Loading