Exception: Equipoise::Error
- Inherits:
-
StandardError
- Object
- StandardError
- Equipoise::Error
- Defined in:
- lib/equipoise/errors.rb
Direct Known Subclasses
Instance Method Summary collapse
-
#retryable? ⇒ Boolean
The retry taxonomy lives in the gem so no producer has to memorize which failures are transient.
Instance Method Details
#retryable? ⇒ Boolean
The retry taxonomy lives in the gem so no producer has
to memorize which failures are transient. Base default: not retryable.
A producer's job becomes: rescue Equipoise::Error => e; raise if e.retryable?.
31 32 33 |
# File 'lib/equipoise/errors.rb', line 31 def retryable? false end |