vote up 9 vote down star
2

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.

flag

3 Answers

vote up 18 vote down check

.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|flag
Thanks. The link to Eric Lippert's blog was really helpful too. :) – Helephant Nov 5 '08 at 10:19
vote up 5 vote down

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

link|flag
vote up -1 vote down

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|flag
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

Your Answer

Get an OpenID
or

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