vote up 0 vote down star
1

I have an application that is mixed Winforms and WPF. In Winforms, I have a global exception handler that is defined as follows:

AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException;
Application.ThreadException += Application_ThreadException;

This ALWAYS catches exceptions anywhere in my application that occur that are not expected and handled gracefully.

For WPF, all I seem to be able to capture is:

 wpfAppDomain = new System.Windows.Application();
 wpfAppDomain.DispatcherUnhandledException +=
         wpfAppDomain_DispatcherUnhandledException;

This does NOT always catch global exceptions, and I often find that exceptions are swallowed somewhere and I'm not sure why.

How can I make a global exception handler for WPF that can catch any exception that occurs that is unhandled?

flag

Are you testing this within Visual Studio or on the executable? Visual Studio will try to catch some of the Exceptions and interrupt your applications execution. – Zyphrax Aug 3 at 20:00
2  
Who throwed that exception? If John Skeet did, you can't catch it man ;) – amazedsaint Aug 4 at 7:13
I would never attempt to catch any exceptions from the great and powerfull John Skeet. – Russ Aug 4 at 15:07
@Zyphrax, if I am lucky in some cases VS will show me the exception, but the executable rarely does. I have global exception handling in so if something goes amiss, then I can prompt the user for some details, and then reports the gory stack track to me, without the user experiencing a rude app crash. – Russ Aug 4 at 15:09

3 Answers

vote up 1 vote down

There are several cases where this code will not catch an exception and do so by design

  • The exception is simply uncatchable. For example a runtime thrown StackOverflowException
  • The exception is unhandled in your code, but caught in the core WPF framework.

There is no way to catch all thrown exceptions. To do so would allow you to violate semantics of code that should always work.

link|flag
I understand that not everything is catchable, nor should it be, but a good example would be a SQL Exception. The winform code catches all of them, but WPF seems to swallow them. – Russ Aug 4 at 15:11
vote up 0 vote down

Have you tried this after calling SetUnhandledExceptionMode? Like this:

// Force all exceptions through our handler.
Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException);
link|flag
vote up 0 vote down

DispatcherUnhandledException only catches exception from code called by a dispatcher (like the name suggests), it is supposed to catch exceptions thrown when called from WPF code.

It does not cover exceptions thrown from: WinForms, BackgroundWorker, the thread pool or threads you started yourself.

you can still use AppDomain.CurrentDomain.UnhandledException to catch those.

link|flag

Your Answer

Get an OpenID
or

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