Skip to content

Commit

Permalink
Merge branch 'main' into taefi/log-validation-error-messages
Browse files Browse the repository at this point in the history
  • Loading branch information
Lodin authored Dec 11, 2024
2 parents 1246a7f + 3d07524 commit 0ba8cd9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ public enum Status {
private final Status status;
private final String errorMessage;

public ValidationResult(Status status, String errorMessage) {
private ValidationResult(Status status, String errorMessage) {
this.status = status;
this.errorMessage = errorMessage;
}

public ValidationResult(Status status) {
private ValidationResult(Status status) {
this.status = status;
this.errorMessage = null;
}
Expand Down

0 comments on commit 0ba8cd9

Please sign in to comment.