Question

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?

No correct solution

OTHER TIPS

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).

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).

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top