Reports duplicate exceptions in a method throws list.

Example:


  void f() throws Exception, Exception {}

After the quick-fix is applied:


  void f() throws Exception {}

Use the Ignore exceptions subclassing others option to ignore exceptions subclassing other exceptions.