Exception: Uffizzi::ConfigHelper::ConfigParamsError
- Inherits:
-
StandardError
- Object
- StandardError
- Uffizzi::ConfigHelper::ConfigParamsError
- Defined in:
- lib/uffizzi/helpers/config_helper.rb
Instance Method Summary collapse
-
#initialize(unavailable_params, key) ⇒ ConfigParamsError
constructor
A new instance of ConfigParamsError.
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 |