如何在单个 throw java 文档标记中有多个异常?
How can I have multiple exception in a single throw java docs tag?
我正在尝试在我的代码中添加 JavaDoc。我需要在一次抛出中添加多个异常。当我在下面添加时,它只识别 NullPointerException
而不是 IllegalArgumentException
。有什么方法可以在单个 throw 标记中提供多个异常,以便当我将鼠标放在方法上时它可以识别这两种异常?
@throws NullPointerException, IllegalArgumentException when invalid userId, timeout is passed
或者我需要这样做?至此,我重复相同的评论两次。
@throws NullPointerException when invalid userId, timeout is passed
@throws IllegalArgumentException when invalid userId, timeout is passed
您不能用 1 个 @throws
标签指定 2 个例外
每个异常都需要一个 @throws
标记。这允许您对抛出的每个异常进行描述。
我正在尝试在我的代码中添加 JavaDoc。我需要在一次抛出中添加多个异常。当我在下面添加时,它只识别 NullPointerException
而不是 IllegalArgumentException
。有什么方法可以在单个 throw 标记中提供多个异常,以便当我将鼠标放在方法上时它可以识别这两种异常?
@throws NullPointerException, IllegalArgumentException when invalid userId, timeout is passed
或者我需要这样做?至此,我重复相同的评论两次。
@throws NullPointerException when invalid userId, timeout is passed
@throws IllegalArgumentException when invalid userId, timeout is passed
您不能用 1 个 @throws
标签指定 2 个例外
每个异常都需要一个 @throws
标记。这允许您对抛出的每个异常进行描述。