SonarQube给出了“记录或重新抛出此异常”。错误

时间:2018-02-19 06:31:39

标签: java exception sonarqube

在我的代码中,我正在记录实际的异常,但SonarQube仍然发出Either log or rethrow this exception.错误。知道为什么SQube会出现这样的错误吗? 请帮忙。 代码:

finally {
            if (testJmxConnection != null) {
                try {
                    testJmxConnection.close();
                } catch (IOException e) {
                    LOG.error("Couldnt close statement" + e.getMessage(), e);
                }
            }
        }

SonarQube版本:5.8

0 个答案:

没有答案