当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Julia showerror用法及代码示例


用法:

showerror(io, e)

显示异常对象 e 的说明性表示。此方法用于在调用 throw 后显示异常。

例子

julia> struct MyException <: Exception
           msg::String
       end

julia> function Base.showerror(io::IO, err::MyException)
           print(io, "MyException: ")
           print(io, err.msg)
       end

julia> err = MyException("test exception")
MyException("test exception")

julia> sprint(showerror, err)
"MyException: test exception"

julia> throw(MyException("test exception"))
ERROR: MyException: test exception

相关用法


注:本文由纯净天空筛选整理自julialang.org 大神的英文原创作品 Base.showerror — Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。