Skip to content

Commit e60b8ac

Browse files
committed
changing the message
1 parent f0391ea commit e60b8ac

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/apache/commons/csv/CSVParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -811,7 +811,7 @@ CSVRecord nextRecord() throws IOException {
811811
try {
812812
this.lexer.nextToken(this.reusableToken);
813813
} catch (IOException ioe) {
814-
String errorMessage = "An error occurred while tying to parse the CSV content. Error in line: "
814+
String errorMessage = "An exception occurred while tying to parse the CSV content. Issue in line: "
815815
+ this.lexer.getCurrentLineNumber() + ", position: " + this.lexer.getCharacterPosition()
816816
+ ", last parsed content: " + this.getLastParsedContent();
817817
throw new IOException(errorMessage, ioe);

0 commit comments

Comments
 (0)