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