@use JSDoc

同義詞

語法

概述

@throws 標籤讓您可以記錄函式可能引發的錯誤。您可以在單一 JSDoc 註解中多次包含 @throws 標籤。

範例

使用 @throws 標籤與類型
/**
 * @throws {InvalidArgumentException}
 */
function foo(x) {}
使用 @throws 標籤與說明
/**
 * @throws Will throw an error if the argument is null.
 */
function bar(x) {}
使用 @throws 標籤與類型和說明
/**
 * @throws {DivideByZero} Argument x must be non-zero.
 */
function baz(x) {}