class AutomationObject::Dsl::Error::ElementHashDoesNotExistError

Error for non-existent element hash

Public Class Methods

new(name) click to toggle source

@param name [Symbol,String] element hash name

Calls superclass method
# File lib/automation_object/dsl/_error.rb, line 28
def initialize(name)
  message = "#{name} element hash does not exist"
  super(message)
end