Tag: error handling
Handling AggregateExceptions
I’ve written a couple of posts ( see also ) about how the AggregateException plays its part in exception handling in parallel systems. However, it has another...
Custom error pages and error handling in ASP.NET MVC 3
In ASP.NET MVC 3 a new bit of code appeared in the global.asax.cs file: public static void RegisterGlobalFilters(GlobalFilterCollection filters) {...
Parallelisation in .NET 4.0 - Part 2 Throwing Exceptions
With more threads running simultaneously in an application there is increasing complexity when it comes to debugging. When exceptions are thrown you usually...
Crazy Extension Method
Here is an example of a crazy extension method that alters the semantics of method calling. First the extension method: public static class MyExtensions {...
What is a DAL (Part 4)
As has been mentioned previously, one of the purposes of the DAL is to shield that application from the database. That said, what happens if a DAL throws an...
