up vote 16 down vote favorite
4
share [g+] share [fb]

Is there any way to find out what exceptions might be thrown by any method in .NET code? Ideally I want to see what might be thrown and choose which ones I want to handle. I guess I want the information you'd get from the throws clause in java.

The situation is I'm doing a linq query on an xml document from the network and want to know what could go wrong. I could open up the assembly in reflector and have a look but I thought there might be an easier way.

link|improve this question

feedback

3 Answers

up vote 21 down vote accepted

.NET does not have enforced ("checked") exceptions like java. The intellisense might show this information, if the developer has added a /// <exception.../> block - but ultimately more exceptions can happen than you expect (OutOfMemoryException, ThreadAbortException, TypeLoadException, etc can all happen fairly unpredictably).

In general, you should have an idea of what things are likely to go wrong, and which ones you can actually do something useful about. In most cases, the correct behaviour is to let the exception bubble up (just running any "finally" code to release resources).

Eric Lippert has a good blog on this subject here.

link|improve this answer
Thanks. The link to Eric Lippert's blog was really helpful too. :) – Helephant Nov 5 '08 at 10:19
feedback

I think that Exception hunter can provide this information however it costs money...

link|improve this answer
feedback

As long as you're using BCL classes, they are all completely documented and Intellisense therefore displays any exception a method can throw. Other than that (and reading the docs), there is no way, I think.

link|improve this answer
There are many exceptions that aren't documented because they can't be predicted; and even then you can't fully trust the intellisense to be up to date. Btw, the downvote wasn't from me. – Marc Gravell Nov 5 '08 at 10:14
"Many exceptions" like TypeLoadException that you mention might come from CLR itself, technically speaking, or even from CPU. I don't think anyone is interested in anticipating and catching those. The .NET SDK on the other hand lists exceptions that can be thrown by BCL methods... – liggett78 Dec 21 '08 at 18:31
and those are normally what you're actually interested in. – liggett78 Dec 21 '08 at 18:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.