Exception: Uffizzi::ConfigHelper::ConfigParamsError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/uffizzi/helpers/config_helper.rb

Instance Method Summary collapse

Constructor Details

#initialize(unavailable_params, key) ⇒ ConfigParamsError

Returns a new instance of ConfigParamsError.



8
9
10
11
12
# File 'lib/uffizzi/helpers/config_helper.rb', line 8

def initialize(unavailable_params, key)
  msg = "These params #{unavailable_params.join(', ')} is not available for #{key}"

  super(msg)
end