77_105_114_111
✅ Try catch exception.
What is the best way to keep doing a do while loop if an exception has been caught?
Atm if I create the exception code within the do while loop the variables are not then declared even though they are
The following example works but exits out of the do while loop.
variables
try{
do{code}
while{code} }
catch(Exception){code}
50 replies