This inspection reports duplicate exceptions in a method throws list. For example:
void f() throws Exception, Exception {
}

The inspection also warns if one exception subclasses another. For example:
void f() throws IOException, Exception {
}

Use the checkbox below to ignore exceptions subclassing others.