當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


erlang error(Reason, Args)用法及代碼示例


error(Reason, Args) -> no_return()
類型:
Reason = term()
Args = [term()] | none

引發類 error 的異常,原因是 ReasonArgs 應該是當前函數或原子 none 的參數列表。如果它是一個列表,則用於為堆棧back-trace中的當前函數提供參數。如果是 none ,則在堆棧跟蹤中使用調用函數的數量。由於計算此函數會導致引發異常,因此它沒有返回值。

異常類的意圖error表示發生了意外錯誤(例如,使用類型不正確的參數調用函數)。請參閱有關指南錯誤和錯誤處理獲取更多信息。例子:

test.erl

-module(test).
-export([example_fun/2]).

example_fun(A1, A2) ->
    erlang:error(my_error, [A1, A2]).

二郎殼:

6> c(test).
{ok,test}
7> test:example_fun(arg1,"this is the second argument").
** exception error: my_error
     in function  test:example_fun/2
         called as test:example_fun(arg1,"this is the second argument")

相關用法


注:本文由純淨天空篩選整理自erlang.org大神的英文原創作品 error(Reason, Args) -> no_return()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。