Methods

Class Public methods

new(association, inner_error)

📝 Source code
# File activerecord/lib/active_record/associations/nested_error.rb, line 8
      def initialize(association, inner_error)
        @base = association.owner
        @association = association
        @inner_error = inner_error
        super(@base, inner_error, { attribute: compute_attribute(inner_error) })
      end
🔎 See on GitHub