Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 680269
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T01:21:12+00:00 2026-05-14T01:21:12+00:00

A library function parses a file and returns an object. If a parser encounters

  • 0

A library function parses a file and returns an object. If a parser encounters unknown data, missing values etc., it shouldn’t throw an exception and stop parsing (because this is not fatal), but there should be a way to pass information about these things to a caller (so that warnings can be displayed in the UI, for example). How can these warning be returned? I’m thinking of passing a callback function/object into the library, are there any other possible solutions?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T01:21:13+00:00Added an answer on May 14, 2026 at 1:21 am

    I would have a collection of errors easily accessible on the parser, something like this:

    public class Parser
    {
       public bool HasErrors { 
         get { return ParseErrors != null && ParseErrors.Count > 0; } 
       }    
       public List<string> ParseErrors { get; set; }
       public object Parse(string fileName) {}
    }
    

    Or whatever error type you wanted of course, something with more detail maybe.

    Code calling your library would look something like this:

    var p = new Parser();
    var o = p.Parse("file.txt"); //Get object
    if(p.HasErrors) //Uh oh, abort, do something with p.ParseErrors
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I use eclipse to write RSS parser wrapper function and it returns expected values
the following function parses a CSV file into a list of dictionaries, where each
Is there a C library function that will return the index of a character
Is there any library function for this purpose, so I don't do it by
I want to use LabVIEW's Call Library Function Node to access a DLL function,
Question: Is there an easy way (library function) to perform a bitwise AND or
I'm looking for a PHP library/function/class which can create Identicon s.
I am developing a wrapper for a third party function library that is interfacing
I am trying to load a dynamic library using dlopen function. This library contains
The GNU Scientific library has a multi-dimensional function minimization framework. However, its caveats explicitly

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.