Exception: Kitsune::Kit::Errors::ConfigurationError

Inherits:
Error
  • Object
show all
Defined in:
lib/kitsune/kit/errors.rb

Constant Summary collapse

DEFAULT_HINT =
"Review the selected configuration and run `kit doctor`."

Instance Attribute Summary

Attributes inherited from Error

#code, #context, #hint, #retryable

Instance Method Summary collapse

Constructor Details

#initialize(message, hint: DEFAULT_HINT) ⇒ ConfigurationError

Returns a new instance of ConfigurationError.



21
22
23
# File 'lib/kitsune/kit/errors.rb', line 21

def initialize(message, hint: DEFAULT_HINT, **)
  super(message, code: "configuration_error", hint: hint, **)
end