Exception: DatoDast::Errors::MissingRenderValueFunction

Inherits:
StandardError
  • Object
show all
Defined in:
lib/dato_dast/errors/missing_render_value_function.rb

Constant Summary collapse

MESSAGE =
<<~MSG.strip
  A structure type of 'value' requires a render value function.

  The following configuration is invalid:
MSG

Instance Method Summary collapse

Constructor Details

#initialize(item_type) ⇒ MissingRenderValueFunction

Returns a new instance of MissingRenderValueFunction.



10
11
12
# File 'lib/dato_dast/errors/missing_render_value_function.rb', line 10

def initialize(item_type)
  super(MESSAGE + " " + item_type)
end