This inspection reports duplicate classes in the method throws list.
For example:
void
f()
throws
Exception,
Exception
{ }
Also, inspection warns if you have declared two exceptions one of which subclasses another. E.g.:
void
f()
throws
IOException
, Exception { }