Exception: Neo4j::Driver::Exceptions::ProtocolException
- Inherits:
-
Neo4jException
- Object
- RuntimeError
- Neo4jException
- Neo4j::Driver::Exceptions::ProtocolException
- Defined in:
- lib/neo4j/driver/exceptions/protocol_exception.rb
Overview
A signal that the contract for client-server communication has broken down. The user should contact support and cannot resolve this his or herself.
Constant Summary collapse
- CODE =
"Protocol violation: "
Instance Attribute Summary
Attributes inherited from Neo4jException
Instance Method Summary collapse
-
#initialize(message, e = nil) ⇒ ProtocolException
constructor
A new instance of ProtocolException.
Methods inherited from Neo4jException
Constructor Details
#initialize(message, e = nil) ⇒ ProtocolException
Returns a new instance of ProtocolException.
11 12 13 |
# File 'lib/neo4j/driver/exceptions/protocol_exception.rb', line 11 def initialize(, e = nil) super(nil, "#{CODE}#{}", e) end |