Tagged Questions
3
votes
5answers
731 views
Fail fast finally clause in Java
Is there a way to detect, from within the finally clause, that an exception is in the process of being thrown?
ie:
try {
// code that may or may not throw an exception
} finally {
...