Exception: DatoDast::Errors::MissingRenderValueFunction
- Inherits:
-
StandardError
- Object
- StandardError
- DatoDast::Errors::MissingRenderValueFunction
- 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
-
#initialize(item_type) ⇒ MissingRenderValueFunction
constructor
A new instance of MissingRenderValueFunction.
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 |