Is it possible to return to a loop if an exception is thrown?
Lets say my code is:
try {
for(int i=0; i < a.length; i++) {
sysout(a[i])
}
} catch (Exception e) {
sysout("Error")
}
And I want to the loop to resume where it stopped.