Merge pull request #348 from gbidsilva/errorMessageFix
Error message fix
This commit is contained in:
commit
008269a7ea
|
@ -147,7 +147,7 @@ public final class CSVParser implements Iterable<CSVRecord>, Closeable {
|
||||||
try {
|
try {
|
||||||
return CSVParser.this.nextRecord();
|
return CSVParser.this.nextRecord();
|
||||||
} catch (final IOException e) {
|
} catch (final IOException e) {
|
||||||
throw new UncheckedIOException(e.getClass().getSimpleName() + " reading next record: " + e.toString(), e);
|
throw new UncheckedIOException("Exception reading next record: " + e.toString(), e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue