class Render::Errors::Definition::NoId

Attributes

definition[RW]

Public Class Methods

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

Public Instance Methods

to_s() click to toggle source
# File lib/render/errors.rb, line 51
def to_s
  "id keyword must be used to differentiate loaded schemas -- none found in: #{definition}"
end