Example

public static class ClassA {
Logger logger = Logger.getLogger("ClassA");

public void methodA() {
try {
//...
} catch ( Exception e ) {
logger.log(Level.SEVERE, "Exception: ", e);
return;
}
}
}

Solution
Reconsider the functionality of the catch clause. Choose if it will log the exception or return from the method.