In Python, there is this useful exception handling code:
try: # Code that could raise an exception except Exception: # Exception handling else: # Cod
Barbaric solution: create an Else class derived from Exception, throw an instance of it at the end of the try block, and use catch (Else) {...} to handle the other stuff.
catch (Else) {...}
I feel so dirty.