list of exceptions

47,599

Solution 1

If you're looking for a list of exceptions that the .Net framework can throw, this article has a bunch of them. I don't know where you're pulling those specific numbers from and I don't know what you hope to accomplish by knowing all of the exceptions (including ones you'll likely never see).

Solution 2

There are loads of exceptions declared by the .NET framework - and other code (including your own) can create more. There are certainly more than 39.... look at the documentation for System.Exception and you'll see near the bottom a list of all the direct known subclasses just in the .NET framework.

Basically, it's not useful to know "all the exceptions" - what's important is which exceptions can be thrown by code you are executing, and in particular which exceptions you should really try to handle (rather than those which should either kill the process or just make the request fail in a server environment).

Share:
47,599
Pavani gaddam
Author by

Pavani gaddam

Updated on July 09, 2022

Comments

  • Pavani gaddam
    Pavani gaddam almost 2 years

    I am looking for a list of possible exceptions in c#, c++, vb.net, j# and jscript. The problem is that some sites show me a list of 20 exceptions whereas some other site shows me a list of 39 exceptions. Can anyone please give me a proper information on this?

  • Offler
    Offler over 11 years
    I understand the whish to know whish exceptions are in the framework by default. Just think about it: You have something (e.g. a not found value). Then I would say: Use an already existing exception, and not a new one. Search for the existing can be hard, a new one like ThisSpecificThingIsNotFoundException is easier. So alist would indeed help to find something useful.
  • kmote
    kmote almost 10 years
    A shorter, albeit older, and (IMO) slightly more useful list is here: Common .NET Exception Types
  • Evgeni Sergeev
    Evgeni Sergeev over 5 years
    In particular, it's the Choosing standard exceptions section of the System.Exception page.