Exception: FeedMe::InfiniteCallLoopError
- Inherits:
-
StandardError
- Object
- StandardError
- FeedMe::InfiniteCallLoopError
- Defined in:
- lib/feedme.rb
Instance Attribute Summary collapse
-
#history ⇒ Object
readonly
Returns the value of attribute history.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(name, history) ⇒ InfiniteCallLoopError
constructor
A new instance of InfiniteCallLoopError.
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
#history ⇒ Object (readonly)
Returns the value of attribute history.
781 782 783 |
# File 'lib/feedme.rb', line 781 def history @history end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
781 782 783 |
# File 'lib/feedme.rb', line 781 def name @name end |