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 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, exception, attribute) ⇒ AttributeAssignmentError

Returns a new instance of AttributeAssignmentError.



166
167
168
169
170
# File 'activerecord/lib/active_record/errors.rb', line 166

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

Instance Attribute Details

#attributeObject (readonly)

Returns the value of attribute attribute



165
166
167
# File 'activerecord/lib/active_record/errors.rb', line 165

def attribute
  @attribute
end

#exceptionObject (readonly)

Returns the value of attribute exception



165
166
167
# File 'activerecord/lib/active_record/errors.rb', line 165

def exception
  @exception
end