Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

C# C# Objects Inheritance Custom Exceptions

Lewis Cowles
Lewis Cowles
74,902 Points

Another broken challenge...

So I'm going through the C# Object course, and it looks like it has issues with running the challenge for Task 2 of 2.

namespace Treehouse.CodeChallenges
{
    public class TooBigException : System.Exception
    {
        public TooBigException() : base()
        {
        }

        public TooBigException(string message) : base(message)
        {
        }
    }
}

would it not be more optimal to use an async queue to handle such workloads (one entry per username so it cannot be overwhelmed if that is the concern), so that if a challenge becomes un-responsive (even days out), then it can be re-run without me re-writing or copy-pasting the code I wish to run?

Just a thought as I think it's getting worse for usability with more inability to run code (which I get is probably expensive)

1 Answer

Jeremy McLain
STAFF
Jeremy McLain
Treehouse Guest Teacher

Thanks for keeping us on our toes. :) We're constantly in the process of improving the site. I know our dev team has done some work on this recently. I've sent your feedback to them as well.