Exception: Spider::Model::Mappers::SchemaSyncUnsafeConversion
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- Spider::Model::Mappers::SchemaSyncUnsafeConversion
- 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
-
#fields ⇒ Object
readonly
Returns the value of attribute fields.
Instance Method Summary collapse
-
#initialize(fields) ⇒ SchemaSyncUnsafeConversion
constructor
A new instance of SchemaSyncUnsafeConversion.
- #to_s ⇒ Object
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
#fields ⇒ Object (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_s ⇒ Object
1419 1420 1421 |
# File 'lib/spiderfw/model/mappers/db_mapper.rb', line 1419 def to_s "Unsafe conversion on fields #{fields.join(', ')}" end |