JSDoc中文文档(@use JSDoc)

JSDoc @throws 标签

目录

同义词

JSDoc @exception 标签

语法

概述

@throws标签可以让你描述函数可能会抛出的错误。在一个JSDoc注释块中您可以包含多个@throws标签。

示例

示例: 在type中使用@throws标签
/**
 * @throws {InvalidArgumentException}
 */
function foo(x) {}
示例: 在描述中使用@throws标签
/**
 * @throws Will throw an error if the argument is null.
 */
function bar(x) {}
示例: 在type和描述中使用@throws标签
/**
 * @throws {DivideByZero} Argument x must be non-zero.
 */
function baz(x) {}