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.



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

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

Instance Attribute Details

#delayObject (readonly)

Returns the value of attribute delay.



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

def delay
  @delay
end