st.exception - 显示异常信息
streamlit的exception
方法显示异常信息。
方法原型
streamlit.exception(exception, exception_traceback=None)
参数:
- exception:要显示的异常对象,类型:Exception
- exception_traceback:如果是None或False,则不显示栈回溯历史。如果是True,则 尝试自动捕捉栈回溯历史。如果是一个Traceback对象,则直接显示该对象的内容
示例代码
>>> e = RuntimeError('This is an exception of type RuntimeError')
>>> st.exception(e)