Exception: ActiveRecord::SoleRecordExceeded

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

Overview

Raised when Active Record finds multiple records but only expected one.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(record = nil) ⇒ SoleRecordExceeded

Returns a new instance of SoleRecordExceeded.



174
175
176
177
# File 'activerecord/lib/active_record/errors.rb', line 174

def initialize(record = nil)
  @record = record
  super "Wanted only one #{record&.name || "record"}"
end

Instance Attribute Details

#recordObject (readonly)

Returns the value of attribute record.



172
173
174
# File 'activerecord/lib/active_record/errors.rb', line 172

def record
  @record
end