Reports patterns in catch blocks that match all types.

Example:


  try f() catch {
    case e => ???
  }

After the quick-fixes are applied:


  try f() catch {
    case e: Throwable => ???
  }