Exception: ViewComponent::RedefinedSlotError
- Inherits:
-
StandardError
- Object
- StandardError
- ViewComponent::RedefinedSlotError
- Defined in:
- lib/view_component/errors.rb
Constant Summary collapse
- MESSAGE =
"COMPONENT declares the SLOT_NAME slot multiple times.\n\n" \ "To fix this issue, choose a different slot name."
Instance Method Summary collapse
-
#initialize(klass_name, slot_name) ⇒ RedefinedSlotError
constructor
A new instance of RedefinedSlotError.
Constructor Details
#initialize(klass_name, slot_name) ⇒ RedefinedSlotError
Returns a new instance of RedefinedSlotError.
129 130 131 |
# File 'lib/view_component/errors.rb', line 129 def initialize(klass_name, slot_name) super(MESSAGE.gsub("COMPONENT", klass_name.to_s).gsub("SLOT_NAME", slot_name.to_s)) end |