Exception: DatoDast::Errors::InvalidTypesConfiguration
- Inherits:
-
StandardError
- Object
- StandardError
- DatoDast::Errors::InvalidTypesConfiguration
- Defined in:
- lib/dato_dast/errors/invalid_types_configuration.rb
Constant Summary collapse
- MESSAGE =
<<~MSG.strip A type configuration requires the "node" key. The following type configurations are invalid: MSG
Instance Method Summary collapse
-
#initialize(keys) ⇒ InvalidTypesConfiguration
constructor
A new instance of InvalidTypesConfiguration.
Constructor Details
#initialize(keys) ⇒ InvalidTypesConfiguration
Returns a new instance of InvalidTypesConfiguration.
10 11 12 |
# File 'lib/dato_dast/errors/invalid_types_configuration.rb', line 10 def initialize(keys) super(MESSAGE + " " + keys.join(", ")) end |