vote up 2 vote down star

What's your opinion in handling exceptions within a thread's execution? More specifically, what if the exception is thrown inside catch block of an try-catch clause? And what happen to the thread if the exception is unhandled?

flag

5 Answers

vote up 5 vote down check

What's your opinion in handling exceptions within a thread's execution?

You should handle exceptions whenever possible and whenever you expect exceptions. Clarification: I totally agree with John that you should not handle exceptions everywhere - only where you can do something about them. However, you should never let an exception go unhandled in a thread as this will cause serious problems. Have a root exception handler and let your thread die gracefully (after logging the problem etc...)

More specifically, what if the thread is thrown inside catch block of an try-catch clause?

Did you mean: What if the exception is thrown within the catch block? Well, then it goes unhandled by the current try-catch block. It's best not to put too much processing in a catch block to avoid this situation as much as possible.

And what happen to the thread if the the the thread is unhandled?

Did you mean: What happens to the thread if the exception is unhandled? It dies.

And as Ben mentioned:

An uncaught exception in a thread triggers an UnhandledException in the thread's AppDomain. You can watch for these by adding an event handler:

AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException;
link|flag
thanks for catching the typo – weilin8 Jul 21 at 18:57
@rein: not only the thread dies; it takes down the full process. – Fredrik Mörk Jul 21 at 18:59
I'd recommend somehow incorporating the information in Ben's answer into your last statement. The thread does die if there's an unhandled exception, but it doesn't stop there. The exception will propagate up the chain to the AppDomain and kill your app if you don't have another handler for it. – jasonh Jul 21 at 18:59
vote up 0 vote down

If you think you can handle an exception, you should catch it. All other exceptions that can not be dealt with should bubble up to the surface of the stack where if along the way no appropriate handler is found, will let the thread die.

You should not write any code in a catch block that could throw another exception, but if you need to you could nest another try catch block around it.

link|flag
vote up 0 vote down

Unhandled exceptions in a thread cause your process to die, and die with an unhelpful message in your event log.

Having top level exception handlers in every thread that log (and maybe re-throw) is a good practice, as is installing an appdomain exception handler as the other responses mention.

link|flag
vote up 4 vote down

I have to disagree with ren, or at least with what it sounds like he meant.

Only handle exceptions if you can actually handle them. Only if you can do something about what went wrong, or add information. Don't handle them just because you can.

try {
    // ..
} catch (Exception ex) {
    Console.WriteLine(ex.Message);
}

The above is very bad. First, you don't display the entire exception, but only the Message. Second, you let things continue, and you don't know what state the process is in.

link|flag
Agreed. I didn't want to imply that there should be try-catch blocks around every bit of code. Thanks for catching that. – rein Jul 21 at 19:06
I totally agree. The tone of rein's answer (although he clarified he didn't mean to imply this) could be for beginners that writing try-catch blocks is a good thing. I would say, try to write code exception-safe, with as little try-catch blocks as possible; and only then start caring about exceptions that you can actually handle in very specific cases. Only at the top level of your application (and possibly the main boundaries of your application layers), care about catching all exceptions (for reporting & gracefully letting your app die) – jeroenh Jul 21 at 21:15
vote up 3 vote down

An uncaught exception in a thread triggers an UnhandledException in the thread's AppDomain. You can watch for these by adding an event handler:

AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException;

link|flag
Note though that you cannon "handle" the exception in the traditional sense. After this event handler has been executed, the AppDomain is likely do die. This use of this event is mostly to be able log information about exception or similar actions. – Fredrik Mörk Jul 21 at 19:06
Yes--I should have mentioned that. – Ben M Jul 21 at 19:07

Your Answer

Get an OpenID
or

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