Java - Checkstyle - Redundant Throws
2022-09-01 18:48:38
我正在使用STS并安装了checkstyle插件。使用使用此 URL 安装新软件 http://eclipse-cs.sourceforge.net/update。
我的Java项目有自己的checkstyle规则。每当我更改任何代码并保存它时,它都会为我显示以下错误。
Errors occurred during the build.
Errors running builder 'Checkstyle Builder' on project 'myproject'.
cannot initialize module TreeWalker - Unable to instantiate RedundantThrows
cannot initialize module TreeWalker - Unable to instantiate RedundantThrows
cannot initialize module TreeWalker - Unable to instantiate RedundantThrows
cannot initialize module TreeWalker - Unable to instantiate RedundantThrows
这是我的冗余抛出的检查样式规则
<module name="RedundantThrows">
<property name="logLoadErrors" value="true" />
<property name="suppressLoadErrors" value="true" />
</module>
如何解决问题?
谢谢。