I'd like to use an exception for error handling in a part of my code but if the code should fail, I would like the script to continue. I want to log the error though. Can someone please help me figure this out?\[code\]try{ if($id == 4) { echo'test'; }}catch(Exception $e){ echo $e->getMessage();}echo'Hello, you should see me...'; <------ I never see this.. No errors, just a trace.\[/code\]