rules.UselessSingleCatch.md Maven / Gradle / Ivy
Checks for catch blocks that are useless. i.e. that catch all exceptions and then just rethrow them.
Invalid:
````
try {
doSomething();
} catch (Exception e) {
throw e;
}
````
© 2015 - 2024 Weber Informatics LLC | Privacy Policy