Installation Elmah is error logging third party library which you can add to ASP.NET application to enable capture of almost all errors. You can add this to your project in about a minute by using the very cool tool NuGet. http://nuget.codeplex.com/ I discussed this briefly in this post “NuGet, the new way to get third [...]
Archive for the ‘Error Handling’ Category
Elmah – Error Logging Modules and Handlers for ASP.NET
Posted in Cool Tools, Error Handling, tagged Elmah, Error Handling, Error Logging, NuGet on March 30, 2011 | Leave a Comment »
Custom Exceptions in C#
Posted in Back to basics - C#, Error Handling, tagged c#, expected exceptions on March 5, 2011 | Leave a Comment »
C# Custom Exception handling There has been some discussion about whether or not to use custom exception handling at all, but call me old fashioned, I like to use custom exception as it better encapsulates known / expected problems, especially when writing service orientated architecture and you want to pass exceptions to the calling code. [...]