gbidsilva commented on code in PR #348:
URL: https://github.com/apache/commons-csv/pull/348#discussion_r1310163383


##########
src/main/java/org/apache/commons/csv/CSVParser.java:
##########
@@ -147,7 +147,7 @@ private CSVRecord getNextRecord() {
             try {
                 return CSVParser.this.nextRecord();
             } catch (final IOException e) {
-                throw new UncheckedIOException(e.getClass().getSimpleName() + 
" reading next record: " + e.toString(), e);
+                throw new UncheckedIOException("Error in reading next record: 
" + e.toString(), e);

Review Comment:
   Might be the intention was to provide the sense of error in the message 
itself.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to