Hi all,
is it possible or is it good practice to enclose try/catch in a loop, as:
for (...) {
try {
......
}
catch (...) {
......
}
}
Many thanks
Weichao
is it possible or is it good practice to enclose try/catch in a loop, as:
for (...) {
try {
......
}
catch (...) {
......
}
}
Many thanks
Weichao
Comment