class Render::Errors::Graph::EndpointKeyNotFound

Attributes

config_key[RW]

Public Class Methods

new(config_key) click to toggle source
# File lib/render/errors.rb, line 33
def initialize(config_key)
  self.config_key = config_key
end

Public Instance Methods

to_s() click to toggle source
# File lib/render/errors.rb, line 37
def to_s
  "No value for key #{config_key} found in config or parental_properties."
end