Exception: Neo4j::Server::CypherTransaction::CypherError
- Inherits:
-
StandardError
- Object
- StandardError
- Neo4j::Server::CypherTransaction::CypherError
- Defined in:
- lib/neo4j-server/cypher_transaction.rb
Instance Attribute Summary collapse
-
#code ⇒ Object
readonly
Returns the value of attribute code.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
Instance Method Summary collapse
-
#initialize(code, status, message) ⇒ CypherError
constructor
A new instance of CypherError.
Constructor Details
#initialize(code, status, message) ⇒ CypherError
Returns a new instance of CypherError.
11 12 13 14 15 |
# File 'lib/neo4j-server/cypher_transaction.rb', line 11 def initialize(code, status, ) super() @code = code @status = status end |
Instance Attribute Details
#code ⇒ Object (readonly)
Returns the value of attribute code.
10 11 12 |
# File 'lib/neo4j-server/cypher_transaction.rb', line 10 def code @code end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
10 11 12 |
# File 'lib/neo4j-server/cypher_transaction.rb', line 10 def status @status end |