同義詞
例外
語法
@throws 自由格式說明
@throws {<type>}
@throws {<type>} 自由格式說明
概述
@throws 標籤讓您可以記錄函式可能引發的錯誤。您可以在單一 JSDoc 註解中多次包含 @throws 標籤。
範例
/**
* @throws {InvalidArgumentException}
*/
function foo(x) {}
/**
* @throws Will throw an error if the argument is null.
*/
function bar(x) {}
/**
* @throws {DivideByZero} Argument x must be non-zero.
*/
function baz(x) {}