Exception: Importo::RetryError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/importo.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(msg, delay) ⇒ RetryError

Returns a new instance of RetryError.



18
19
20
21
# File 'lib/importo.rb', line 18

def initialize(msg, delay)
  super(msg)
  @delay = delay
end

Instance Attribute Details

#delayObject (readonly)

Returns the value of attribute delay.



16
17
18
# File 'lib/importo.rb', line 16

def delay
  @delay
end