We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 87529de + dbc418b commit 008269aCopy full SHA for 008269a
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(e.getClass().getSimpleName() + " reading next record: " + e.toString(), e);
+ throw new UncheckedIOException("Exception reading next record: " + e.toString(), e);
151
}
152
153
0 commit comments