throw(Any) -> no_return()
类型:
Any = term()
引发类 throw
的异常。旨在用于从函数执行非本地返回。
如果在一个时间内评估捕获表达式, catch 表达式返回值Any
.例子:
> catch throw({hello, there}).
{hello,there}
如果在一个时间内评估try
-a 的块尝试表达, 值Any
可以被捕获在 catch 块内。例子:
try
throw({my_exception, "Something happened"})
catch
throw:{my_exception, Desc} ->
io:format(standard_error, "Error: ~s~n", [Desc])
end
失败:nocatch
(如果异常处理程序未捕获)。
请参阅有关指南错误和错误处理获取更多信息。
相关用法
- erlang tan用法及代码示例
- erlang tuple_to_list用法及代码示例
- erlang term_to_binary用法及代码示例
- erlang table(Table)用法及代码示例
- erlang term_to_binary(Term)用法及代码示例
- erlang time()用法及代码示例
- erlang timestamp()用法及代码示例
- erlang tl(List)用法及代码示例
- erlang trace_pattern(MFA :: send, MatchSpec, FlagList :: [])用法及代码示例
- erlang trace_pattern(MFA :: 'receive', MatchSpec, FlagList :: [])用法及代码示例
- erlang trunc(Number)用法及代码示例
- erlang tuple_size(Tuple)用法及代码示例
- erlang tuple_to_list(Tuple)用法及代码示例
- erlang to_list(Q :: queue(Item))用法及代码示例
- erlang take(Key, Orddict)用法及代码示例
- erlang table(Name)用法及代码示例
- erlang traverse(Name, Fun)用法及代码示例
- erlang take(Key, Map1)用法及代码示例
- erlang to_list(MapOrIterator)用法及代码示例
- erlang take(String, Characters)用法及代码示例
- erlang titlecase(String :: unicode:chardata())用法及代码示例
- erlang to_float(String)用法及代码示例
- erlang to_integer(String)用法及代码示例
- erlang to_graphemes(String :: unicode:chardata())用法及代码示例
- erlang trim(String)用法及代码示例
注:本文由纯净天空筛选整理自erlang.org大神的英文原创作品 throw(Any) -> no_return()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。