Posts by ricardo • 31 points
1 post
-
3
votes5
answers819
viewsA: Is the rest of the code inside Try executed after finding Exception?
In addition to what has already been said, if you want a block of code to be executed despite being caught an exception, you can include the Finally after the Catch. try { // Código a executar }…