Give users clearer details when parsing issues occur.
We should aim to provide information about the exact line number where the error happens. This might be tricky since YAML parsing occurs before the data is transferred into objects, but we could store line number details in IYamlNode objects.
Additionally, we could catch exceptions from lower-level objects within parent objects to better pinpoint where the issue originates.
Give users clearer details when parsing issues occur.
We should aim to provide information about the exact line number where the error happens. This might be tricky since YAML parsing occurs before the data is transferred into objects, but we could store line number details in
IYamlNodeobjects.Additionally, we could catch exceptions from lower-level objects within parent objects to better pinpoint where the issue originates.