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.



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

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

Instance Method Details

#messageObject



32
33
34
# File 'lib/alchemy/errors.rb', line 32

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