Skip to content

Commit

Permalink
Revert "CsvRow - Reword exception for missing value (#2601)" (#2619)
Browse files Browse the repository at this point in the history
This reverts commit 7bf764e.
  • Loading branch information
skitini authored Dec 11, 2023
1 parent 0bb5496 commit d84e54a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ public Optional<String> findField(Pattern headerPattern) {
public String getValue(String header) {
String value = getField(header);
if (value.isEmpty()) {
throw new ParseFailureException("No value was found in column '{header}'", header);
throw new ParseFailureException("No value was found for '{header}'", header);
}
return value;
}
Expand Down

0 comments on commit d84e54a

Please sign in to comment.