Exception: BreakerMachines::ParallelFallbackError
- Defined in:
- lib/breaker_machines/errors.rb
Overview
Raised when all parallel fallbacks fail
Instance Attribute Summary collapse
-
#errors ⇒ Object
readonly
Returns the value of attribute errors.
Instance Method Summary collapse
-
#initialize(message, errors) ⇒ ParallelFallbackError
constructor
A new instance of ParallelFallbackError.
Constructor Details
#initialize(message, errors) ⇒ ParallelFallbackError
Returns a new instance of ParallelFallbackError.
66 67 68 69 |
# File 'lib/breaker_machines/errors.rb', line 66 def initialize(, errors) @errors = errors super() end |
Instance Attribute Details
#errors ⇒ Object (readonly)
Returns the value of attribute errors.
64 65 66 |
# File 'lib/breaker_machines/errors.rb', line 64 def errors @errors end |