Exception: FeedMe::InfiniteCallLoopError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/feedme.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, history) ⇒ InfiniteCallLoopError

Returns a new instance of InfiniteCallLoopError.



737
738
739
740
# File 'lib/feedme.rb', line 737

def initialize(name, history)
  @name = name
  @history = history
end

Instance Attribute Details

#historyObject (readonly)

Returns the value of attribute history.



735
736
737
# File 'lib/feedme.rb', line 735

def history
  @history
end

#nameObject (readonly)

Returns the value of attribute name.



735
736
737
# File 'lib/feedme.rb', line 735

def name
  @name
end