I have a for loop that contains a try-catch block:
for ..
{
try
{
...
}
catch (Exception ex)
{
throw ex;
}
}
Now, if I will re-throw an exception and will catch it in the calling method, will the program continue from the next iteration? (after the external catch block).
TY!