ExceptionFinder For Reflector
I just published my latest add-in for Reflector: ExceptionFinder. Basically, this will find all of the exceptions that could potentially be thrown from a method. In other words, you should never have to write this code again:
try
{
// Code goes here...
}
catch(Exception)
{
// UGH!
}
because you'll be able to figure out the exceptions that could be called. Enjoy!