class AWS::Record::InvalidRecordError
Raised when calling save!, create! or update_attributes! on a record that has validation errors. @private
Attributes
record[R]
Public Class Methods
new(record)
click to toggle source
Calls superclass method
# File lib/aws/record/exceptions.rb, line 29 def initialize record @record = record super(record.errors.full_messages.join(', ')) end