Exception: Neo4j::Server::CypherResponse::ResponseError
- Inherits:
-
StandardError
- Object
- StandardError
- Neo4j::Server::CypherResponse::ResponseError
- Defined in:
- lib/neo4j-server/cypher_response.rb
Instance Attribute Summary (collapse)
-
- (Object) code
readonly
Returns the value of attribute code.
-
- (Object) status
readonly
Returns the value of attribute status.
Instance Method Summary (collapse)
-
- (ResponseError) initialize(msg, status, code)
constructor
A new instance of ResponseError.
Constructor Details
- (ResponseError) initialize(msg, status, code)
Returns a new instance of ResponseError
9 10 11 12 13 |
# File 'lib/neo4j-server/cypher_response.rb', line 9 def initialize(msg, status, code) super(msg) @status = status @code = code end |
Instance Attribute Details
- (Object) code (readonly)
Returns the value of attribute code
7 8 9 |
# File 'lib/neo4j-server/cypher_response.rb', line 7 def code @code end |
- (Object) status (readonly)
Returns the value of attribute status
7 8 9 |
# File 'lib/neo4j-server/cypher_response.rb', line 7 def status @status end |