Exception: Mongoid::MultiParameterAttributes::Errors::AttributeAssignmentError
- Inherits:
-
Errors::MongoidError
- Object
- StandardError
- Errors::MongoidError
- Mongoid::MultiParameterAttributes::Errors::AttributeAssignmentError
- Defined in:
- lib/mongoid/multi_parameter_attributes.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.
Constant Summary
Constants inherited from Errors::MongoidError
Errors::MongoidError::BASE_KEY
Instance Attribute Summary collapse
-
#attribute ⇒ Object
readonly
Returns the value of attribute attribute.
-
#exception ⇒ Object
readonly
Returns the value of attribute exception.
Instance Method Summary collapse
-
#initialize(message, exception, attribute) ⇒ AttributeAssignmentError
constructor
A new instance of AttributeAssignmentError.
Methods inherited from Errors::MongoidError
Constructor Details
#initialize(message, exception, attribute) ⇒ AttributeAssignmentError
Returns a new instance of AttributeAssignmentError.
17 18 19 20 21 |
# File 'lib/mongoid/multi_parameter_attributes.rb', line 17 def initialize(, exception, attribute) @exception = exception @attribute = attribute @message = end |
Instance Attribute Details
#attribute ⇒ Object (readonly)
Returns the value of attribute attribute.
15 16 17 |
# File 'lib/mongoid/multi_parameter_attributes.rb', line 15 def attribute @attribute end |
#exception ⇒ Object (readonly)
Returns the value of attribute exception.
15 16 17 |
# File 'lib/mongoid/multi_parameter_attributes.rb', line 15 def exception @exception end |