vote up 1 vote down star
1

I'm building a small application in ASP.NET MVC. I'm still trying to find my way around some of the design problems that I encounter.

One of them is the use of exceptions. I've built my model so that it throws an exception whenever an object does not exist or is not accessible to the user. I think I made the right choice, in my opinion.

The problem is, what's next? I can either check for the exception in the controller, and redirect to a different view, but that seems to produce a lot of the same pattern in many actions in many controllers.

Or, I can simply avoid checking for the exception and override the OnException method of the controller (or some base controller class that I will use) to deal with it. That would keep all the clutter from my actions.

From the examples that I've found, I can see how HandleError and OnException can be used to log unhandled exceptions (which is a good thing to do) and redirect to a "sorry!" page, but I would like to know your opinion on using the mechanism on less "unforeseen" exceptions.

flag

1 Answer

vote up 2 vote down check

You should check out the HandleError attribute. You can specify which view should be shown for which exception. http://stackoverflow.com/questions/183316/aspnet-mvc-handleerror It's MVC-specific and feels much "cleaner" to me than using the event.

In addition to HandleError, I use ELMAH in order to catch and record exceptions.

Personally, I try to get to a point where all generated exceptions are caught at the controller level and not bubbled beyond that. However, [handleerror] does exactly that -- catches the errors and displays a relevant, pretty page to the user.

Edit: Also note that you can specify this on your controller, not just the action.

James

link|flag
True. The issue I have with the HandleError attribute is that it doesn't function in debug mode, according to the documentation. I didn't get it working at all, in fact. – Dave Van den Eynde Jul 15 at 7:50
1  
Make sure you have <customErrors mode="On" /> so that MVC can handle the errors. – Paul Alexander Jul 15 at 7:57
Indeed. I didn't completely understand the customErrors configuration element. Many thanks! – Dave Van den Eynde Jul 15 at 8:06
Now the question remains whether it is a "best practice" to do it this way. – Dave Van den Eynde Jul 15 at 8:07

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.