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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T10:40:20+00:00 2026-05-18T10:40:20+00:00

I am trying to figure out how and where I should handle my errors

  • 0

I am trying to figure out how and where I should handle my errors from a list of actions that I have to carry out:

Summary:

I am passing a List and a Settings object to a ProcessActions class. The ProcessActions class iterates through the list of strings and gets the appropriate instantiated object from my factory and calls the object.Execute() on each object.

class ProcessActions : IEngine
{
    public ActionFactory Factory { get; set; }
    public IList<string> Actions { get; set; }
    public ISettings Settings { get; set; }
    public ProcessActions(IList<string> actions, ISettings settings)
    {
        Factory = new ActionFactory();
        Actions = actions;
        Settings = settings;
    }

    public void Execute()
    {
        foreach (var action in Actions)
        {
            var task = Factory.CreateInstance(action, Settings);
            task.Execute();
        }
    }
}

Originally I was recording any errors in a dictionary that I pass back to the object that called .Execute(). However, would I be able to gather any thrown exceptions in each object and return those so that I could log them in this ProcessAction (some type of collection)?

  • 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-18T10:40:21+00:00Added an answer on May 18, 2026 at 10:40 am

    .NET 4 introduced the AggregateException which is essentially what you’re asking. It appears as though it was introduced specifically for the PLINQ and other parallel library related objects which could have multiple threads all throwing exceptions. It’s a throwable object just like any other exception.

    It looks like you’re not executing in parallel so this isn’t quite what it was designed for but maybe it can be used or the concept adapted. See the remarks section of the referenced page.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to figure out how my new app should handle data. In previous
I'm trying to figure out the best way to handle a dropdown list where
I'm trying to figure out what exceptions should be used for; logging application errors,
I'm trying to figure out what logic should go into the different UIViewController methods
I'm trying to figure out if I should continue on with a current pattern
Trying to figure out the best way to do this: Should I do something
I am trying to figure out under what circumstances I should use weak (non-identifying)
I am trying to figure out what type of structure or container I should
Trying to figure out how to write a jquery formula that will sum all
Trying to figure out how to best handle the following scenario: Assume a RequestContext

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.