We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eaba341 commit dbc418bCopy full SHA for dbc418b
1 file changed
src/main/java/org/apache/commons/csv/CSVParser.java
@@ -147,7 +147,7 @@ private CSVRecord getNextRecord() {
147
try {
148
return CSVParser.this.nextRecord();
149
} catch (final IOException e) {
150
- throw new UncheckedIOException("Error in reading next record: " + e.toString(), e);
+ throw new UncheckedIOException("Exception reading next record: " + e.toString(), e);
151
}
152
153
0 commit comments