Audit Java: system to detect exceptions thrown / caught (aop?)

后端 未结 6 1436
广开言路
广开言路 2021-02-07 08:56

Due to checked exceptions, we can have some problems in production having all exceptions caught in the right place and logged correctly.

I wonder if there is some openso

6条回答
  •  名媛妹妹
    2021-02-07 09:05

    There are tools such as FindBugs, PMD and Checkstyle which can identify some common Exception handling issues. I'm never seen a tool that specifically analyses your exception handling, if anyone knows I'll be interested!

提交回复
热议问题