Hi, i would like to know if there is a Way that when an exception is thrown to let the program continue aftare the exception was thronw for example
try
line 1
line 2
line 3
line 4 ( here the exception is throw and jumps to the catch)
line 5 <-- i would like the program to continue its execution after loggin the error
line 6
catch ex as exception
log(ex.tostring)
end try
Thanks for any comments