Class: Rubocop::Cop::Lint::RescueException

Inherits:
Cop
  • Object
show all
Defined in:
lib/rubocop/cop/lint/rescue_exception.rb

Overview

This cop checks for rescue blocks targeting the Exception class.

Constant Summary collapse

MSG =
'Avoid rescuing the Exception class.'

Constants inherited from Cop

Cop::OPERATOR_METHODS

Instance Attribute Summary

Attributes inherited from Cop

#config, #corrections, #offences, #processed_source

Instance Method Summary collapse

Methods inherited from Cop

#add_offence, all, #autocorrect?, #convention, #cop_config, cop_name, #cop_name, cop_type, #debug?, #ignore_node, inherited, #initialize, lint?, #message, non_rails, rails?, style?, #support_autocorrect?, #warning

Constructor Details

This class inherits a constructor from Rubocop::Cop::Cop

Instance Method Details

#on_resbody(node) ⇒ Object



10
11
12
13
14
15
16
# File 'lib/rubocop/cop/lint/rescue_exception.rb', line 10

def on_resbody(node)
  return unless node.children.first
  rescue_args = node.children.first.children
  if rescue_args.any? { |a| targets_exception?(a) }
    warning(node, :expression)
  end
end

#targets_exception?(rescue_arg_node) ⇒ Boolean

Returns:

  • (Boolean)


18
19
20
# File 'lib/rubocop/cop/lint/rescue_exception.rb', line 18

def targets_exception?(rescue_arg_node)
  Util.const_name(rescue_arg_node) == 'Exception'
end