I am wondering can try..catch force execution to go into the catch and run code in there?
try..catch
catch
here example code:
try { if (
why are you catching an exception? Why not just run the code in your "else" block? If you MUST do it that way, just throw a new exception
throw new Exception();