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.



697
698
699
700
# File 'lib/feedme.rb', line 697

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

Instance Attribute Details

#historyObject (readonly)

Returns the value of attribute history.



695
696
697
# File 'lib/feedme.rb', line 695

def history
  @history
end

#nameObject (readonly)

Returns the value of attribute name.



695
696
697
# File 'lib/feedme.rb', line 695

def name
  @name
end