class AWS::Record::InvalidRecordError

Raised when calling save! or update_attributes! on a record that has validation errors. @private

Attributes

record[R]

Public Class Methods

new(record) click to toggle source
# File lib/aws/record/exceptions.rb, line 29
def initialize record
  @record = record
  super(record.errors.full_messages.join(', '))
end