Exception: DatoDast::Errors::InvalidTypesConfiguration

Inherits:
StandardError
  • Object
show all
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

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