feisky

云计算、虚拟化与Linux技术笔记
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

Get exception description and stack trace which caused an exception

Posted on 2012-12-07 12:18  feisky  阅读(255)  评论(0编辑  收藏  举报
import traceback

try:
    raise ValueError
except:
    tb = traceback.format_exc()
else:
    tb = "No error"
finally:
    print tb

Original: http://stackoverflow.com/questions/4564559/get-exception-description-and-stack-trace-which-caused-an-exception-all-as-a-st

无觅相关文章插件,快速提升流量