class Neo4j::RecordNotFound
Raised when Neo4j.rb cannot find record by given id.
Attributes
id[R]
model[R]
primary_key[R]
Public Class Methods
new(message = nil, model = nil, primary_key = nil, id = nil)
click to toggle source
Calls superclass method
# File lib/neo4j/errors.rb 11 def initialize(message = nil, model = nil, primary_key = nil, id = nil) 12 @primary_key = primary_key 13 @model = model 14 @id = id 15 16 super(message) 17 end