format_exception(Class, Reason, StackTrace) -> unicode:chardata()
OTP 24.0format_exception(Class, Reason, StackTrace, Options) ->
unicode:chardata()
OTP 24.0
類型:
Class = error | exit | throw
Reason = term()
StackTrace = erlang:stacktrace()
Options = format_options()
格式化錯誤原因並使用 try
... catch
捕獲的堆棧 back-trace,其樣式與 shell 格式化它們的樣式相同。
例子:
try
do_something()
catch
C:R:Stk ->
Message = erl_error:format_exception(C, R, Stk),
io:format(LogFile, "~ts\n", [Message])
end
如果 error_info
提供了異常,format_exception
將使用該信息來提供有關異常的附加信息。
例子:
try
erlang:raise(badarg,[],[{error_info,#{}}])
catch
C:R:Stk ->
Message = erl_error:format_exception(C, R, Stk),
io:format(LogFile, "~ts\n", [Message])
end
參看erlang:error/3
有關如何引發異常的詳細信息error_info
包括。
相關用法
- erlang format(Format)用法及代碼示例
- erlang fold(Fun, Acc0, Q :: queue(Item))用法及代碼示例
- erlang fold(Fun, Acc0, Orddict)用法及代碼示例
- erlang foldl(Fun, Acc0, Archive)用法及代碼示例
- erlang fold(Fun, Init, MapOrIter)用法及代碼示例
- erlang foldl(Fun, Acc0, List)用法及代碼示例
- erlang foldr(Fun, Acc0, List)用法及代碼示例
- erlang fold(Function, Acc0, QH)用法及代碼示例
- erlang float用法及代碼示例
- erlang file_read用法及代碼示例
- erlang file_size用法及代碼示例
- erlang from_list用法及代碼示例
- erlang find用法及代碼示例
- erlang fun2ms(LiteralFun)用法及代碼示例
- erlang float(Number)用法及代碼示例
- erlang float_to_binary(Float, Options)用法及代碼示例
- erlang float_to_list(Float, Options)用法及代碼示例
- erlang floor(Number)用法及代碼示例
- erlang fun_to_list(Fun)用法及代碼示例
- erlang filter(Fun, Q1 :: queue(Item))用法及代碼示例
- erlang filtermap(Fun, Q1)用法及代碼示例
- erlang fetch(Key, Orddict)用法及代碼示例
- erlang fetch_keys(Orddict)用法及代碼示例
- erlang filter(Pred, Orddict1)用法及代碼示例
- erlang find(Key, Orddict)用法及代碼示例
注:本文由純淨天空篩選整理自erlang.org大神的英文原創作品 format_exception(Class, Reason, StackTrace) -> unicode:chardata()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。