[M B DE] Method might ignore exception [DE_MIGHT_IGNORE]

This method might ignore an exception.  In general, exceptions should be handled or reported in some way, or they should be thrown out of the method.

 

try{
//[hyddd的FindBugs分析记录][M B DE] Method might ignore exception
}
Catch(Execption ex){}
//[hyddd的FindBugs分析记录][M B DE] Method might ignore exception
上面这段代码没有对ex进行任何处理。Findbugs在这里想说明的就是上面这个问题。

相关文章:

  • 2021-09-23
  • 2021-06-01
  • 2021-05-20
  • 2021-06-20
  • 2021-05-27
  • 2021-08-05
  • 2021-06-07
  • 2021-06-27
猜你喜欢
  • 2021-05-26
  • 2021-07-12
  • 2021-11-22
  • 2021-08-13
  • 2021-07-29
  • 2021-09-07
  • 2021-11-29
相关资源
相似解决方案