Exception: ViewComponent::MultipleMatchingTemplatesForPreviewError

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

Constant Summary collapse

MESSAGE =
"Found multiple templates for TEMPLATE_IDENTIFIER."

Instance Method Summary collapse

Constructor Details

#initialize(template_identifier) ⇒ MultipleMatchingTemplatesForPreviewError

Returns a new instance of MultipleMatchingTemplatesForPreviewError.



215
216
217
# File 'lib/view_component/errors.rb', line 215

def initialize(template_identifier)
  super(MESSAGE.gsub("TEMPLATE_IDENTIFIER", template_identifier))
end