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.

It is possible to catch an exception and throw a new exception which wraps the first exception as an inner exception:

http://msdn.microsoft.com/en-us/library/system.exception.innerexception(VS.71).aspx

Also, if I call a function and it throws a certain error, but I catch it, will the calling code's catch handler execute? If so, and it is of a higher exception type, is this not wrapping the exception?

eg I can throw exception ex of type IndexOutOfRange, log it but rethrow, catch a higher up exception and do something, or I can throw a new exception and wrap an inner exception like:

throw new MyException("some error", ex.InnerException)

Thanks

share|improve this question

1 Answer

up vote 1 down vote accepted
  1. Yes you can throw an Exception that wraps the first Function

  2. Also, if I call a function and it throws a certain error, but I catch it, will the calling code's catch handler execute?

No.

  1. If so, and it is of a higher exception type, is this not wrapping the exception? I didnt quite get this one but it looks like the term Wrapper in its original sense.
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.