In Python, there is this useful exception handling code:
try: # Code that could raise an exception except Exception: # Exception handling else: # Cod
that would be the empty statement like hits
try { somethingThatCanThrow(); } catch(Exception ex) { LogException(ex); return; } ContinueFlow();