Open juchom opened 5 years ago
Thanks for this report and for the reference project. I was able to reproduce the issue. It looks like a bug in our exception serialization code.
The problem is FieldValidationException
. It's a complex data structure and the Json.NET serializer we use runs into a StackOverflowException
when trying to serialize instances of this object. I imagine there are other object and/or exception types which may cause similar problems.
StackOverflowException
cannot be caught, so we'll need to find another way to deal with this.
I'm parsing a csv file with CsvHelper with bad data in it.
I have a StackOverflowException
You have a simple project attached to reproduce the issue.
soe.zip