以下のコードを考慮すると、catch 句で例外がスローされた場合でも最終的に実行されますか?
try {
//code here throws exception
}
catch(Exception ex) {
//code catches above exception however code here also throws another exception
}
finally {
//does this code even run considering the exception thrown in the above catch clause??
}