I have a question for you.
I have a piece of code as follows.
try
//some code that fails
except
// code to retry the code that fails
end
Now I want to retry the failing code after the exception. Is it possible to do that in Delphi? So you have a kind of loop that retries after an exception for 3/4 times. and if it didn't work at the 4th time then give an error message.