Is there such case when in try\finally block the finally won't be executed?

Viewed 1658

I'm studying for my test in Object Oriented Programming and I was wondering if there is any case what so ever that considering the following code:

try {
    do something
} catch (someException e) {

} finally {
    do something
}

the finally block will not execute?

4 Answers
Related