Skip to content

Commit

Permalink
#17164 fix for bad constructor (#17165)
Browse files Browse the repository at this point in the history
  • Loading branch information
wezell authored and jgambarios committed Sep 5, 2019
1 parent fcd7c77 commit 587123a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -360,7 +360,7 @@ private ValidationError(final String field, final String message) {
}

public ValidationError(final String message) {
this(message, null);
this(null, message);
}

public String getField() {
Expand Down

0 comments on commit 587123a

Please sign in to comment.