Exception: Render::Errors::Graph::EndpointKeyNotFound
- Inherits:
-
StandardError
- Object
- StandardError
- Render::Errors::Graph::EndpointKeyNotFound
- Defined in:
- lib/render/errors.rb
Instance Attribute Summary collapse
-
#config_key ⇒ Object
Returns the value of attribute config_key.
Instance Method Summary collapse
-
#initialize(config_key) ⇒ EndpointKeyNotFound
constructor
A new instance of EndpointKeyNotFound.
- #to_s ⇒ Object
Constructor Details
#initialize(config_key) ⇒ EndpointKeyNotFound
Returns a new instance of EndpointKeyNotFound.
21 22 23 |
# File 'lib/render/errors.rb', line 21 def initialize(config_key) self.config_key = config_key end |
Instance Attribute Details
#config_key ⇒ Object
Returns the value of attribute config_key.
19 20 21 |
# File 'lib/render/errors.rb', line 19 def config_key @config_key end |
Instance Method Details
#to_s ⇒ Object
25 26 27 |
# File 'lib/render/errors.rb', line 25 def to_s "No value for key #{config_key} found in config or parental_attributes." end |