]> source.dussan.org Git - sonarqube.git/blob
095e615ecb0b0e1b404a62a4d5fc8b0d7b11cf42
[sonarqube.git] /
1 <p>
2   This method uses a try-catch block that catches Exception objects, but Exception is not
3   thrown within the try block, and RuntimeException is not explicitly caught.  It is a common bug pattern to
4   say try { ... } catch (Exception e) { something } as a shorthand for catching a number of types of exception
5   each of whose catch blocks is identical, but this construct also accidentally catches RuntimeException as well,
6   masking potential bugs.
7   </p>