class RuboCop::Cop::Lint::RescueException

Checks for ‘rescue` blocks targeting the `Exception` class.

@example

# bad
begin
  do_something
rescue Exception
  handle_exception
end

# good
begin
  do_something
rescue ArgumentError
  handle_exception
end