Skip to content

Commit

Permalink
Update CSVParser.java
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory authored Aug 30, 2023
1 parent eaba341 commit dbc418b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/apache/commons/csv/CSVParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ private CSVRecord getNextRecord() {
try {
return CSVParser.this.nextRecord();
} catch (final IOException e) {
throw new UncheckedIOException("Error in reading next record: " + e.toString(), e);
throw new UncheckedIOException("Exception reading next record: " + e.toString(), e);
}
}

Expand Down

0 comments on commit dbc418b

Please sign in to comment.