I never use it so I'm wondering about the usefulness of the finally block.
What's the difference between
try {
// A
} catch(...) {
// B
} finally {
// C
}
and
try {
// A
} catch(...) {
// B
}
// C
In both cases :
if no exceptions -> A,C
if exceptions -> A,B,C