You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<Root>
<Person id = 111>
<name>xyz</name>
</Person>
<Person id = 222>
<name>abc</name>
</Person>
<Person id = 333>
<name>mno</name>
</Person>
</Root>
if there was an error parsing second row (id=222), there is no way I found I could omit that row from ParseResult because errors are captured at a file level rather than at a row (Person tag) level.
In this case it will return PartialParseSuccess object with deserialized objects and errors separated.
how do we handle such cases?
Thanks
The text was updated successfully, but these errors were encountered:
Lets say I have a xml data like below
if there was an error parsing second row (id=222), there is no way I found I could omit that row from ParseResult because errors are captured at a file level rather than at a row (Person tag) level.
In this case it will return PartialParseSuccess object with deserialized objects and errors separated.
how do we handle such cases?
Thanks
The text was updated successfully, but these errors were encountered: