Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to add more specific error handling to my c# app, but I am finding it hard to track down what exceptions are thrown by classes and method. Is there a way through visual studio 2010 to find this info, or maybe an exception list?

share|improve this question
Do you mean, for a given method or code statement you want to know which exceptions it might throw? – Yuck Sep 7 '11 at 17:27

4 Answers

up vote 5 down vote accepted

Just find the class/method you are interested in on MSDN.

For example, look at this page for the Dictionary.Remove Method. If the method throws an Exception (like this one), you can get the information for the Exceptions section of the page.

share|improve this answer

If you are talking about .Net framework methods, they are documented in the hover over help. You will see Exceptions: . Or you can see it in the object browswer Ctrl+W, J as well. Or press F1 over a function to go to MSDN help, where they are documented in detail.

share|improve this answer
I am using the productivity extension and for some reason that information isn't shown – chobo Sep 7 '11 at 17:39

If you're allowing the exceptions to be thrown, you should be able to see the exception details in the Event Viewer in Administrative Tools.

share|improve this answer
Are you looking for a list of exceptions that a class might throw? – James Johnson Sep 7 '11 at 17:30

You can find specific uses of a particular exception, but there is no complete listing of all exceptions any method might throw.

Consider the following method:

  public void SomeMethod()
  {
       SomeObject x = null;
       x.SomeMethod(); // NullReferenceException

       File.Open("SomePath", FileMode.CreateNew); // Any number of File Exceptions potentially

       throw new CustomException();
  };

How would a code analyzer be able to determine which potential exceptions there were?

If you're looking for information on a specific class, I'd check the documentation for it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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