Exception: Alchemy::ElementDefinitionError

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

Instance Method Summary collapse

Constructor Details

#initialize(attributes) ⇒ ElementDefinitionError

Raised if element definition can not be found.



24
25
26
# File 'lib/alchemy/errors.rb', line 24

def initialize(attributes)
  @name = attributes[:name]
end

Instance Method Details

#messageObject



28
29
30
# File 'lib/alchemy/errors.rb', line 28

def message
  "Element definition for #{@name} not found. Please check your elements.yml"
end