class Kuzira::UnknownAttributeError

Attributes

attribute[R]
object[R]

Public Class Methods

new(object, attribute) click to toggle source
Calls superclass method
# File lib/kuzira/errors.rb, line 5
def initialize(object, attribute)
  @object = object
  @attribute = attribute
  super("unknown attribute '#{attribute}' for #{@object.class}.")
end