Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Lucas Nordström
2,230 PointsCatch(System.Exception ex) not throwing the exceptions i expect
Why doesn't " Catch(System.Exception ex) " catch all errors of type Exception?
1 Answer

Steven Parker
216,012 PointsSince 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.

Lucas Nordström
2,230 PointsThat was exactly what had happend, I thought that the quiz and individual question followed along, my bad!
Steven Parker
216,012 PointsSteven Parker
216,012 PointsIt would help if you provided the complete code, and explain what makes you think it doesn't.