class Render::Errors::Definition::NotFound
Attributes
title[RW]
Public Class Methods
new(title)
click to toggle source
# File lib/render/errors.rb, line 59 def initialize(title) self.title = title end
Public Instance Methods
to_s()
click to toggle source
# File lib/render/errors.rb, line 63 def to_s "Schema with title #{title} is not loaded" end