class WrappableError

Use to propagate exceptions from the inner block to with_retries handler

Attributes

wrapped[R]

Public Class Methods

new(ex) click to toggle source
Calls superclass method
# File lib/with_retries.rb, line 7
def initialize(ex)
  super
  @wrapped = ex
end