All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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