On this page
class ActiveRecord::RecordNotSaved
Raised by ActiveRecord::Base#save! and ActiveRecord::Base.create! methods when a record is invalid and cannot be saved.
Attributes
record[R]
Public Class Methods
# File activerecord/lib/active_record/errors.rb, line 96
def initialize(message = nil, record = nil)
@record = record
super(message)
end
Calls superclass method
© 2004–2020 David Heinemeier Hansson
Licensed under the MIT License.