Reports multi-catch sections, like try{} catch (IOException|RuntimeException e) {...}

The quick fix splits multi-catch section into separate catch blocks.

For example, the multi-catch section


try{}
catch (IOException|RuntimeException e) {
  /*handle the exception*/
}
is transformed into the following:

try{}
catch (IOException e) {
  /*handle the exception*/
}
catch (RuntimeException e) {
  /*handle the exception*/
}