fatcodeguy
Programmer
Hi, I was just wondering how you could check to see if an try expression was not caught (no exeption). For example, if there is an error I want to print error, if not, print another message:
try {statement}
catch (Exception e) {ERROR statement}
"if not caught" {SUCCESS statement} --> Is this possible
thanks,
try {statement}
catch (Exception e) {ERROR statement}
"if not caught" {SUCCESS statement} --> Is this possible
thanks,