Exception: Neo4j::Driver::Exceptions::Value::Uncoercible
- Inherits:
-
ValueException
- Object
- RuntimeError
- Neo4jException
- ClientException
- ValueException
- Neo4j::Driver::Exceptions::Value::Uncoercible
- Defined in:
- lib/neo4j/driver/exceptions/value/uncoercible.rb
Overview
A Uncoercible exception indicates that the conversion cannot be achieved.
Instance Attribute Summary
Attributes inherited from Neo4jException
Instance Method Summary collapse
-
#initialize(source_type_name, destination_type_name) ⇒ Uncoercible
constructor
A new instance of Uncoercible.
Methods inherited from ClientException
Methods inherited from Neo4jException
Constructor Details
#initialize(source_type_name, destination_type_name) ⇒ Uncoercible
Returns a new instance of Uncoercible.
8 9 10 |
# File 'lib/neo4j/driver/exceptions/value/uncoercible.rb', line 8 def initialize(source_type_name, destination_type_name) super("Cannot coerce #{source_type_name} to #{destination_type_name}") end |