How to convert a caught Exception (its description and stack trace) into a str for external use?
Exception
str
try: method_that_can_raise_an_exception(params) except Exception as e: print(complete_exception_description(e))
← Назад к списку