Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Line No is not getting printed in CSVParseException in CSVReader class #224

Open
balwinderkumar opened this issue Oct 13, 2018 · 1 comment

Comments

@balwinderkumar
Copy link

If there is any exception in record while parsing, line is not appearing in exception message, as CSVParseException is not appending the line no. to exception message.

CSVParseException(String message, int lineno) {
super(message);
recordNumber = lineno;
}

this method should be
CSVParseException(String message, int lineno) {
recordNumber = lineno;
super(message+" at line "+recordNumber);
}

@wkloster
Copy link

s. #253

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants