There's a good question Catch block is not being evaluated when exceptions are thrown from finallys that is discussing some of the sometimes unexpected results of throwing an exception in a finally block.
I can't think of any good reason why you would want to throw an exception in a finally block. If there was a previous exception, it would always be lost. I've always seen finally used to clean up in ways that should never throw an exception.
Can anyone explain when it would be appropriate to throw an exception in a finally block?
throwand contrary to the expectations of the developer....so is there a question 'whether to throw exception from a finally block and when' at all? I guess it isn't... – horgh Aug 28 '12 at 5:05finallyblock into try..catch to avoid any possible exception in the finally block...And I still think, it should be done just like that, if one has any warnings that the finally block could throw an exception – horgh Aug 28 '12 at 5:07finally, maybe they wouldn't have added that broken.Dispose()! – Marc Gravell♦ Aug 28 '12 at 5:49