我在eclipse luna的checkstyle插件中使用了google java样式。在我的Java文档中都看到此错误,但似乎找不到解决方法。这是次要的,但困扰着我。
我的javadoc:
/**
* This is a description of something
*
* @throws Exception
*/
错误在@throws行上,错误:
At-clause should have a non-empty description
最佳答案
通常,您应该写
* @throws Exception when this exceptional condition happens
例如
* @throws IllegalArgumentException when num is negative
...并大致解释了为什么会发生该异常。
关于java - 如何解决子句中应该有一个非空的描述? -Checkstyle-Java,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33044222/