Skip to content

Commit

Permalink
Add missing test file
Browse files Browse the repository at this point in the history
  • Loading branch information
Rawi01 committed May 24, 2024
1 parent 52283d7 commit 4c3ede2
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ class EmptyException extends Exception {
@java.lang.SuppressWarnings("all")
@lombok.Generated
public EmptyException() {
this(null, null);
this((java.lang.String) null, (java.lang.Throwable) null);
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
public EmptyException(final java.lang.String message) {
this(message, null);
this(message, (java.lang.Throwable) null);
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
Expand All @@ -27,7 +27,7 @@ public NoArgsException() {
@java.lang.SuppressWarnings("all")
@lombok.Generated
protected NoArgsException(final java.lang.String message) {
this(message, null);
this(message, (java.lang.Throwable) null);
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
Expand Down

0 comments on commit 4c3ede2

Please sign in to comment.