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 6950045
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T14:02:35+00:00 2026-05-27T14:02:35+00:00

I realize there are a few questions on best practices for exception handling, but

  • 0

I realize there are a few questions on best practices for exception handling, but I had to make a few tweaks on the examples I found. My goal was to get rid of basic exceptions like “ArgumentException”, “FileNotFoundException”, “ArrayIndexOutOfBoundsException”, etc.

If you can picture the following code in a hierarchy. So Process() calls ValidateData() which calls CSVData(). I am doing basically this same type of thing, wrapping all of the known functions including my custom ones, then putting that in an exception for the method and passing it up as an inner exception. Is this a decent way to do this task? It works for me, but I want to get in the habit of handling exceptions in a very clean way since some past projects of mine have been covered with “catch(Exception e)….and parse e.Message…”

Here’s my example code:

public class CSVData
{
    DataTable data;
    public CSVData(string file)
    {
        try
        {
            this.data = CSVReader.ToDataTable(file); //throws a few basic exceptions
        }
        catch (FileNotFoundException e)
        {
            throw new FailedLoadingCSVException(e, currentLine, file);
        }
        catch (IOException e)
        {
            throw new FailedLoadingCSVException(e, currentLine, file);
        }
        catch (ArgumentNullException e)
        {
            throw new FailedLoadingCSVException(e, currentLine, file);
        }
        catch (ArgumentException e)
        {
            throw new FailedLoadingCSVException(e, currentLine, file);
        }
        catch (OutOfMemoryException e)
        {
            throw new FailedLoadingCSVException(e, currentLine, file);
        }
    }

    class FailedLoadingCSVException : Exception
    {
        public int failedAtLine;

        public FailedLoadingCSVException(Exception e, int failedLine, string file)
            :base ("The system failed at loading "+file+" at line "+failedLine, e)
        {
            this.failedAtLine = failedLine;
        }
    }
}
  • 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-27T14:02:36+00:00Added an answer on May 27, 2026 at 2:02 pm
    try
    {
    }
    catch ( Exception ex )
    {
       if ( e is FileNotFoundException ||
            e is IOException ||
            // enumerate few 
           )
           throw new FailedLoadingCSVException(e, currentLine, file);
       else
           throw; // rethrow all other exceptions without touching them         
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I realize there are a few other questions about why Cygwin is apparently slow,
I realize there are similar questions on this topic, but I still cannot find
I realize that there are many similar questions, but most involve scaling down the
I realize there have been a few other questions on this topic, and the
There have been a few questions on SO about the pimpl idiom , but
There are a few questions on this, but they all seemed to be targeting
I realize there are several other questions pertaining to this - but either they
I realize there are quite a few posts on this subject, but I am
I realise there are a fair few questions on here already with regard to
I realize there are similar posts to this out there, but rest assured, this

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.