Empty catch blocks. Especially if the exception being ignored is java.lang.Exception/System.Exceptionjava.lang.Exception/System.Exception.
If a block of code could throw multiple exceptions, there should be multiple catches. Each handling the appropriate exception accordingly.
An empty catch might mean the developer doesn't have an understanding of logic in the try, and the empty catch was added to pass the compiler. At the very least they should contain some kind of logging logic.
