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