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.



1403
1404
1405
# File 'lib/spiderfw/model/mappers/db_mapper.rb', line 1403

def initialize(fields)
    @fields = fields
end

Instance Attribute Details

#fieldsObject (readonly)

Returns the value of attribute fields.



1402
1403
1404
# File 'lib/spiderfw/model/mappers/db_mapper.rb', line 1402

def fields
  @fields
end

Instance Method Details

#to_sObject



1406
1407
1408
# File 'lib/spiderfw/model/mappers/db_mapper.rb', line 1406

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