class AWS::Record::EmptyRecordError

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

Attributes

record[R]

Public Class Methods

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