class AWS::Record::EmptyRecordError

Raised when trying to persist a record that has no attribute values to persist. @private

Attributes

record[R]

Public Class Methods

new(record) click to toggle source
# File lib/aws/record/exceptions.rb, line 40
def initialize record
  @record = record
  super('unable persist empty records')
end