Hello, I am using JSP-Servlet construct to develop enterprise applications.
I was implementing the error/exception handling the other day when I realized that I don't know what to do if an exception occurs in the finally block. For example,
try {
//my code
}
catch (Exception e) {
//print something to log
}
finally {
try {
//do some cleanup
}
catch (Exception e) {
//THIS IS WHERE I DON'T KNOW WHAT TO DO
}
}
Please help
Thanks,
Haig