Exception: Render::Errors::Graph::EndpointKeyNotFound

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(config_key) ⇒ EndpointKeyNotFound

Returns a new instance of EndpointKeyNotFound.



33
34
35
# File 'lib/render/errors.rb', line 33

def initialize(config_key)
  self.config_key = config_key
end

Instance Attribute Details

#config_keyObject

Returns the value of attribute config_key.



31
32
33
# File 'lib/render/errors.rb', line 31

def config_key
  @config_key
end

Instance Method Details

#to_sObject



37
38
39
# File 'lib/render/errors.rb', line 37

def to_s
  "No value for key #{config_key} found in config or parental_properties."
end