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 Catching Exceptions

Catch(System.Exception ex) not throwing the exceptions i expect

Why doesn't " Catch(System.Exception ex) " catch all errors of type Exception?

Steven Parker
Steven Parker
229,787 Points

It would help if you provided the complete code, and explain what makes you think it doesn't.

1 Answer

Steven Parker
Steven Parker
229,787 Points

Since most of the examples of this quiz have cascading catch clauses, I'm guessing that you're looking at one where a more specific catch handles the exception instead of the basic System.Exception clause.

Remember that once any catch clause condition is met, that clause handles the exception so no other catch clauses that follow it will be triggered.

If that's not your issue, please provide more information.

That was exactly what had happend, I thought that the quiz and individual question followed along, my bad!