I was wondering if there\'s a list with all Exception types. I know a few Exceptions, but I don\'t know them all. Sometimes I throw an Exception and then I think, maybe .NET
A good way to see all types that derive from System.Exception in the .NET framework is by using Reflector.
Note that Reflector allows you to dinamically add any .NET assembly meaning that it will search for System.Exception derived types in any custom set of assemblies you provide. The most common .NET framework assemblies are added by default.