Exception: Render::Errors::Schema::NotFound
- Inherits:
-
StandardError
- Object
- StandardError
- Render::Errors::Schema::NotFound
- Defined in:
- lib/render/errors.rb
Instance Attribute Summary collapse
-
#title ⇒ Object
Returns the value of attribute title.
Instance Method Summary collapse
-
#initialize(title) ⇒ NotFound
constructor
A new instance of NotFound.
- #to_s ⇒ Object
Constructor Details
#initialize(title) ⇒ NotFound
35 36 37 |
# File 'lib/render/errors.rb', line 35 def initialize(title) self.title = title end |
Instance Attribute Details
#title ⇒ Object
Returns the value of attribute title.
33 34 35 |
# File 'lib/render/errors.rb', line 33 def title @title end |
Instance Method Details
#to_s ⇒ Object
39 40 41 |
# File 'lib/render/errors.rb', line 39 def to_s "Schema with title #{title} is not loaded" end |