在我的代码中,我正在记录实际的异常,但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