Exception: ActiveRecord::AttributeAssignmentError

Inherits:
ActiveRecordError show all
Defined in:
activerecord/lib/active_record/errors.rb

Overview

Raised when an error occurred while doing a mass assignment to an attribute through the ActiveRecord::Base#attributes= method. The exception has an attribute property that is the name of the offending attribute.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(message = nil, exception = nil, attribute = nil) ⇒ AttributeAssignmentError

Returns a new instance of AttributeAssignmentError.



276
277
278
279
280
# File 'activerecord/lib/active_record/errors.rb', line 276

def initialize(message = nil, exception = nil, attribute = nil)
  super(message)
  @exception = exception
  @attribute = attribute
end

Instance Attribute Details

#attributeObject (readonly)

Returns the value of attribute attribute



274
275
276
# File 'activerecord/lib/active_record/errors.rb', line 274

def attribute
  @attribute
end

#exceptionObject (readonly)

Returns the value of attribute exception



274
275
276
# File 'activerecord/lib/active_record/errors.rb', line 274

def exception
  @exception
end