I want to execute the code in the try block again after an exception is caught. Is that possible somehow?
For Eg:
try { //execute some code } catch(E
already answered in these (and other) links
Better way to write retry logic without goto
Cleanest way to write retry logic?
How can I improve this exception retry scenario?