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?
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?
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.
Your best bet is MSDN. Start with System.Exception's class hierarchy and follow the trail.