Exception: Arq::ParametersNotInContextError

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

Overview

Raised when action parameters do not exist within the passed context.

Instance Method Summary collapse

Constructor Details

#initialize(params) ⇒ ParametersNotInContextError

Returns a new instance of ParametersNotInContextError.



13
14
15
# File 'lib/arq/errors.rb', line 13

def initialize(params)
  super(params.join(", "))
end