Exception: BlockGiven::Connectors::Http::Retry
- Inherits:
-
StandardError
- Object
- StandardError
- BlockGiven::Connectors::Http::Retry
- Defined in:
- lib/block_given/connectors/http.rb
Overview
Internal signal used to retry on retriable JSON-RPC errors.
Instance Attribute Summary collapse
-
#cause_error ⇒ Object
readonly
Returns the value of attribute cause_error.
Instance Method Summary collapse
-
#initialize(cause_error) ⇒ Retry
constructor
A new instance of Retry.
Constructor Details
#initialize(cause_error) ⇒ Retry
Returns a new instance of Retry.
102 103 104 105 |
# File 'lib/block_given/connectors/http.rb', line 102 def initialize(cause_error) @cause_error = cause_error super(cause_error.) end |
Instance Attribute Details
#cause_error ⇒ Object (readonly)
Returns the value of attribute cause_error.
100 101 102 |
# File 'lib/block_given/connectors/http.rb', line 100 def cause_error @cause_error end |