Exception: ActiveRecord::UnknownAttributeError

Inherits:
NoMethodError
  • Object
show all
Defined in:
lib/active_record/errors.rb

Overview

Raised when unknown attributes are supplied via mass assignment.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(record, attribute) ⇒ UnknownAttributeError

Returns a new instance of UnknownAttributeError.



186
187
188
189
190
# File 'lib/active_record/errors.rb', line 186

def initialize(record, attribute)
  @record = record
  @attribute = attribute.to_s
  super("unknown attribute '#{attribute}' for #{@record.class}.")
end

Instance Attribute Details

#attributeObject (readonly)

Returns the value of attribute attribute.



184
185
186
# File 'lib/active_record/errors.rb', line 184

def attribute
  @attribute
end

#recordObject (readonly)

Returns the value of attribute record.



184
185
186
# File 'lib/active_record/errors.rb', line 184

def record
  @record
end