Reference for predefined exceptions in .NET

Viewed 2218

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?

2 Answers

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.

Related