Exception: DatoDast::Errors::MissingItemConfiguration
- Inherits:
-
StandardError
- Object
- StandardError
- DatoDast::Errors::MissingItemConfiguration
- Defined in:
- lib/dato_dast/errors/missing_item_configuration.rb
Constant Summary collapse
- MESSAGE =
<<~MSG.strip An configuration must be provided for every item type. The configuration for the following item type is invalid: MSG
Instance Method Summary collapse
-
#initialize(key) ⇒ MissingItemConfiguration
constructor
A new instance of MissingItemConfiguration.
Constructor Details
#initialize(key) ⇒ MissingItemConfiguration
Returns a new instance of MissingItemConfiguration.
10 11 12 |
# File 'lib/dato_dast/errors/missing_item_configuration.rb', line 10 def initialize(key) super(MESSAGE + " " + key) end |