Login
Remember
Register
Ask a Question
Is there any case when finally will not be executed?
0
votes
asked
May 3, 2021
in
JAVA
by
Robindeniel
Is there any case when finally will not be executed?
#finally-block
java
Java-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
May 3, 2021
by
Robindeniel
Finally block will not be executed if program exits(either by calling System.exit() or by causing a fatal error that causes the process to abort).More details.
...