def _else(maybe_false_if, if_exception): try: return maybe_false_if() except ConditionalException as e: return if_exception(str(e))