We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0391ea commit e60b8acCopy full SHA for e60b8ac
1 file changed
src/main/java/org/apache/commons/csv/CSVParser.java
@@ -811,7 +811,7 @@ CSVRecord nextRecord() throws IOException {
811
try {
812
this.lexer.nextToken(this.reusableToken);
813
} catch (IOException ioe) {
814
- String errorMessage = "An error occurred while tying to parse the CSV content. Error in line: "
+ String errorMessage = "An exception occurred while tying to parse the CSV content. Issue in line: "
815
+ this.lexer.getCurrentLineNumber() + ", position: " + this.lexer.getCharacterPosition()
816
+ ", last parsed content: " + this.getLastParsedContent();
817
throw new IOException(errorMessage, ioe);
0 commit comments