Class: Rubocop::Cop::RescueException

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

Constant Summary collapse

MSG =
'Avoid rescuing the Exception class.'

Instance Attribute Summary

Attributes inherited from Cop

#debug, #disabled_lines, #offences

Instance Method Summary collapse

Methods inherited from Cop

#add_offence, cop_name, #has_report?, #ignore_node, inherited, #initialize, #inspect, #name, #on_comment

Constructor Details

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

Instance Method Details

#on_resbody(node) ⇒ Object



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

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

  super
end

#targets_exception?(rescue_arg_node) ⇒ Boolean

Returns:

  • (Boolean)


18
19
20
21
22
23
# File 'lib/rubocop/cop/rescue_exception.rb', line 18

def targets_exception?(rescue_arg_node)
  return false unless rescue_arg_node.type == :const
  namespace, klass_name = *rescue_arg_node
  return false unless namespace.nil? || namespace.type == :cbase
  klass_name == :Exception
end