tags:

views:

69

answers:

2

Does a reference exist with a catalog of predefined exceptions for the .NET framework along with examples of when is it appropriate to use each?

+5  A: 

It's possible to get a list of them while in Visual Studio: press Ctl + Alt + E

EDIT: I was able to find this site that has a pretty comprehensive list of .NET Exceptions and a brief description of what causes them.

CAbbott
That is a nice way to get a list of what's available, but I'm interested in finding information about when it's appropriate to use each. +1 anyway.
ElectricDialect
+1  A: 

Your best bet is MSDN. Start with System.Exception's class hierarchy and follow the trail.

System.Exception hirarchy

Randolpho