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 (
You could throw an exception to force a catch
throw new Exception(...);