Exception: Spider::Model::Mappers::SchemaSyncUnsafeConversion

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/spiderfw/model/mappers/db_mapper.rb

Overview

Error raised when a conversion results in a potential data loss.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(fields) ⇒ SchemaSyncUnsafeConversion

Returns a new instance of SchemaSyncUnsafeConversion.



1416
1417
1418
# File 'lib/spiderfw/model/mappers/db_mapper.rb', line 1416

def initialize(fields)
    @fields = fields
end

Instance Attribute Details

#fieldsObject (readonly)

Returns the value of attribute fields.



1415
1416
1417
# File 'lib/spiderfw/model/mappers/db_mapper.rb', line 1415

def fields
  @fields
end

Instance Method Details

#to_sObject



1419
1420
1421
# File 'lib/spiderfw/model/mappers/db_mapper.rb', line 1419

def to_s
    "Unsafe conversion on fields #{fields.join(', ')}"
end