Handbook
`try_catch`
try_catch(primary, exc_types=(Exception,), handler=...) runs primary(). If it raises an instance of exc_types, returns handler(exc) instead. Other exceptions propagate.
try_catch
try_catch(primary, exc_types=(Exception,), handler=...) runs primary(). If it raises an instance of exc_types, returns handler(exc) instead. Other exceptions propagate.