📜  打印异常类型python代码示例

📅  最后修改于: 2022-03-11 14:45:10.122000             🧑  作者: Mango

代码示例1
try:
    someFunction()
except Exception as ex:
    template = "An exception of type {0} occurred. Arguments:\n{1!r}"
    message = template.format(type(ex).__name__, ex.args)
    print (message)