class ActiveRecord::RecordInvalid

Active Record Validations

Raised by save! and create! when the record is invalid. Use the record method to retrieve the record which did not validate.

begin
  complex_operation_that_calls_save!_internally
rescue ActiveRecord::RecordInvalid => invalid
  puts invalid.record.errors
end

Attributes

record[R]

Public Class Methods

new(record) click to toggle source
# File lib/active_record/validations.rb, line 14
def initialize(record)
  @record = record
  errors = @record.errors.full_messages.join(", ")
  super(I18n.t("activerecord.errors.messages.record_invalid", :errors => errors))
end