Update CSVParser.java

This commit is contained in:
Gary Gregory 2023-08-30 08:36:48 -04:00 committed by GitHub
parent eaba341535
commit dbc418b9e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ public final class CSVParser implements Iterable<CSVRecord>, Closeable {
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);
}
}