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.



783
784
785
786
# File 'lib/feedme.rb', line 783

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

Instance Attribute Details

#historyObject (readonly)

Returns the value of attribute history.



781
782
783
# File 'lib/feedme.rb', line 781

def history
  @history
end

#nameObject (readonly)

Returns the value of attribute name.



781
782
783
# File 'lib/feedme.rb', line 781

def name
  @name
end