.NET - What's the best way to implement a "catch all exceptions handler" - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T01:07:19Zhttp://stackoverflow.com/feeds/question/219594http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/219594/net-whats-the-best-way-to-implement-a-catch-all-exceptions-handler10.NET - What's the best way to implement a "catch all exceptions handler"TimothyP2008-10-20T19:35:54Z2009-09-26T23:01:12Z
<p>I'm wondering what the best way is to have a "if all else fails catch it".</p>
<p>I mean, you're handling as much exceptions as possible in your application,
but still there are bound to be bugs, so I need to have something that
catches all unhandled exceptions so I can collect information and store
them in a database or submit them to a web service.</p>
<p>Does the AppDomain.CurrentDomain.UnhandledException event capture everything?
Even if the application is multithreaded?</p>
<p>Side note: Windows Vista exposes native API functions that allow any application
to recover itself after a crash... can't think of the name now... but I'd rather not
use it, as many of our users are still using Windows XP.</p>
http://stackoverflow.com/questions/219594/net-whats-the-best-way-to-implement-a-catch-all-exceptions-handler/219607#21960710Answer by amdfan for .NET - What's the best way to implement a "catch all exceptions handler"amdfan2008-10-20T19:39:07Z2008-10-20T19:39:07Z<p>In ASP.NET, you use the Global.asax Application_Error function.</p>
<p>In WinForms, you use the MyApplication_UnhandledException in the ApplicationEvents file </p>
<p>Both of these functions are called if an unhanded exception occurs in your code. You can log the exception and present a nice message to the user from them.</p>
http://stackoverflow.com/questions/219594/net-whats-the-best-way-to-implement-a-catch-all-exceptions-handler/219641#2196413Answer by Bogdan Maxim for .NET - What's the best way to implement a "catch all exceptions handler"Bogdan Maxim2008-10-20T19:47:47Z2008-12-30T09:00:03Z<p>For WinForms, don't forget to attach to the current Thread's unhadled exception event too (especially if you are using multi threading).</p>
<p>Some links on best practices <a href="http://msdn.microsoft.com/en-us/library/seyhszts.aspx" rel="nofollow">here</a> and <a href="http://dturini.blogspot.com/2005/02/exception-handling-best-practices-in.html" rel="nofollow">here</a> and <a href="http://www.codeproject.com/KB/architecture/exceptionbestpractices.aspx" rel="nofollow">here (probably the best exception handling article for .net)</a></p>
http://stackoverflow.com/questions/219594/net-whats-the-best-way-to-implement-a-catch-all-exceptions-handler/219646#2196469Answer by Bob Nadler for .NET - What's the best way to implement a "catch all exceptions handler"Bob Nadler2008-10-20T19:48:48Z2008-10-20T19:48:48Z<p>For Winform applications, in addition to AppDomain.CurrentDomain.UnhandledException I also use <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.application.threadexception.aspx" rel="nofollow">Application.ThreadException</a> and <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.application.setunhandledexceptionmode.aspx" rel="nofollow">Application.SetUnhandledExceptionMode</a> (w/ UnhandledExceptionMode.CatchException). This combination seems to catch everything.</p>
http://stackoverflow.com/questions/219594/net-whats-the-best-way-to-implement-a-catch-all-exceptions-handler/219703#2197033Answer by Steven A. Lowe for .NET - What's the best way to implement a "catch all exceptions handler"Steven A. Lowe2008-10-20T20:06:59Z2008-10-20T20:06:59Z<p>AppDomain.CurrentDomain.UnhandledException reports exceptions on the main thread of a console or service application</p>
<p>Application.ThreadException reports exceptions on the main thread of a WinForms application</p>
<p>Global.asax's Application_Error function is for web applications</p>
<p>ah but for threads, use <a href="http://www.codeproject.com/KB/threads/SafeThread.aspx" rel="nofollow">SafeThread</a>; there is no unhandled-exceptions event for secondary threads - and for worker threads (timer, threadpool) there is no safety net at all!</p>
<p>bear in mind that these events do not <em>handle</em> exceptions, they merely <em>report</em> them to the application - often when it is far too late to do anything useful/sane about them</p>
<p>Logging exceptions is good, but <a href="http://www.nov8r.com/calm.aspx" rel="nofollow">monitoring applications</a> is better ;-)</p>
<p>caveat: i am the author of <a href="http://www.nov8r.com/calm.aspx" rel="nofollow">CALM</a> and the <a href="http://www.codeproject.com/KB/threads/SafeThread.aspx" rel="nofollow">SafeThread</a> article</p>
http://stackoverflow.com/questions/219594/net-whats-the-best-way-to-implement-a-catch-all-exceptions-handler/219917#2199170Answer by Rorschach for .NET - What's the best way to implement a "catch all exceptions handler"Rorschach2008-10-20T21:08:04Z2008-10-20T21:08:04Z<p>There's also a cool thing called <a href="http://code.google.com/p/elmah/" rel="nofollow">ELMAH</a> that will log any ASP.NET errors that occur in a web application. I know you're asking about a Winform App solution, but I felt this could be beneficial to anyone needing this type of thing on a web app. We use it where I work and it's been very helpful in debugging (especially on production servers!)</p>
<p>Here's some features that it has (pulled right off the page):</p>
<blockquote>
<ul>
<li>Logging of nearly all unhandled exceptions.</li>
<li>A web page to remotely view the entire log of recoded exceptions.</li>
<li>A web page to remotely view the full details of any one logged exception.</li>
<li>In many cases, you can review the original yellow screen of death that
ASP.NET generated for a given
exception, even with customErrors mode
turned off.</li>
<li>An e-mail notification of each error at the time it occurs.</li>
<li>An RSS feed of the last 15 errors from the log.</li>
<li>A number of backing storage implementations for the log, including
in-memory, Microsoft SQL Server and
several contributed by the community.</li>
</ul>
</blockquote>
http://stackoverflow.com/questions/219594/net-whats-the-best-way-to-implement-a-catch-all-exceptions-handler/220083#2200831Answer by jezell for .NET - What's the best way to implement a "catch all exceptions handler"jezell2008-10-20T21:51:41Z2008-10-20T21:51:41Z<p>You can monitor most exceptions in that handler even in multithreaded apps, but .NET (starting with 2.0) won't allow you to cancel unhandled exceptions unless you enable the 1.1 compatibility mode. When that happens the AppDomain will be shut down no matter what. The best you could do is launch the app in a different AppDomain so that you can handle this exception and create a new AppDomain to restart the app. </p>
http://stackoverflow.com/questions/219594/net-whats-the-best-way-to-implement-a-catch-all-exceptions-handler/886887#8868870Answer by YordanGeorgiev for .NET - What's the best way to implement a "catch all exceptions handler"YordanGeorgiev2009-05-20T08:47:00Z2009-05-20T08:52:31Z<p>I am using the following approach, which works and reduces greatly the amount of code ( yet I am not sure if there is a better way or what the pitfalls of it might be.
Whenever you call:
I quess the quys giving minuses would be polite enough to clarify their actions ; )</p>
<pre><code>try
{
CallTheCodeThatMightThrowException()
}
catch (Exception ex)
{
System.Diagnostics.StackTrace st = new System.Diagnostics.StackTrace ();
Utils.ErrorHandler.Trap ( ref objUser, st, ex );
} //eof catch
</code></pre>
<p>And here is the ErrorHandler code :
Just to make clear- : objUser - is the object modelling the appusers ( you might get info such as domain name , department , region etc. for logging purposes
ILog logger - is the logging object - e.g. the one performing the logging activities
StackTrace st - the StackTrace object giving you debugging info for your app</p>
<pre><code>using System;
using log4net; //or another logging platform
namespace GenApp.Utils
{
public class ErrorHandler
{
public static void Trap ( Bo.User objUser, ILog logger, System.Diagnostics.StackTrace st, Exception ex )
{
if (ex is NullReferenceException)
{
//do stuff for this ex type
} //eof if
if (ex is System.InvalidOperationException)
{
//do stuff for this ex type
} //eof if
if (ex is System.IndexOutOfRangeException)
{
//do stuff for this ex type
} //eof if
if (ex is System.Data.SqlClient.SqlException)
{
//do stuff for this ex type
} //eof if
if (ex is System.FormatException)
{
//do stuff for this ex type
} //eof if
if (ex is Exception)
{
//do stuff for this ex type
} //eof catch
} //eof method
}//eof class
} //eof namesp
</code></pre>
http://stackoverflow.com/questions/219594/net-whats-the-best-way-to-implement-a-catch-all-exceptions-handler/1055954#10559544Answer by modosansreves for .NET - What's the best way to implement a "catch all exceptions handler"modosansreves2009-06-28T22:43:29Z2009-06-28T22:43:29Z<p>I have just played with AppDomain's UnhandledException behavior,
(this is the last stage the unhandled exception is registered at)</p>
<p>Yes, after processing the event handlers your application will be terminated and the nasty "... program stopped working dialog" shown.</p>
<p>:)
You <em>still</em> can avoid that.</p>
<p>Check out:</p>
<pre><code>class Program
{
void Run()
{
AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
Console.WriteLine("Press enter to exit.");
do
{
(new Thread(delegate()
{
throw new ArgumentException("ha-ha");
})).Start();
} while (Console.ReadLine().Trim().ToLowerInvariant() == "x");
Console.WriteLine("last good-bye");
}
int r = 0;
void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
{
Interlocked.Increment(ref r);
Console.WriteLine("handled. {0}", r);
Console.WriteLine("Terminating " + e.IsTerminating.ToString());
Thread.CurrentThread.IsBackground = true;
Thread.CurrentThread.Name = "Dead thread";
while (true)
Thread.Sleep(TimeSpan.FromHours(1));
//Process.GetCurrentProcess().Kill();
}
static void Main(string[] args)
{
Console.WriteLine("...");
(new Program()).Run();
}
}
</code></pre>
<p><strong>P.S.</strong> Do handle the unhandled for Application.ThreadException (WinForms) or DispatcherUnhandledException (WPF) at the higher level.</p>
http://stackoverflow.com/questions/219594/net-whats-the-best-way-to-implement-a-catch-all-exceptions-handler/1482364#14823640Answer by Corey Trager for .NET - What's the best way to implement a "catch all exceptions handler"Corey Trager2009-09-26T23:01:12Z2009-09-26T23:01:12Z<p>In a manged GUI app, by default, exceptions that originate in the GUI thread are handled by whatever is assigned to the Application.ThreadException.</p>
<p>Exceptions that originate in the other threads are handled by AppDomain.CurrentDomain.UnhandledException.</p>
<p>If you want your GUI thread exceptions to work just like your-non GUI ones, so that they get handled by AppDomain.CurrentDomain.UnhandledException, you can do this:</p>
<pre><code>Application.SetUnhandledExceptionMode(UnhandledExceptionMode.ThrowException);
</code></pre>
<p>An advantage to catching the GUI thread exceptions using ThreadException is that you can give the use the options of letting the app continue. To make sure no config files are overriding default behavior, you can call: </p>
<pre><code>Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException);
</code></pre>
<p>You are still vulnerable to exceptions from badly behaved native dlls. If a native dll installs its own handler using Win32 SetUnhandledExceptionFilter, it is supposed to save the pointer to the previous filter and call it too. If it doesn't do that, your handler wont' get called.</p>