show/hide this revision's text 3 formatting

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.

show/hide this revision's text 2 added 17 characters in body

Empty catch blocks. Especially if the exception being ignored is java.lang.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.

    Post Made Community Wiki by Community
show/hide this revision's text 1