You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# raises Person.DoesNotExist if no match
jim = Person.nodes.get(name='Jim')
So a class specific exception should be raised. Actually it does not. It raises: neomodel.core.DoesNotExist
institute = Institute.nodes.get(uuid=uuid)
File "/Users/mjm/Dropbox/Devel/ACHN/Sociale_kaart_neomodel/venv3/lib/python3.6/site-packages/neomodel/match.py", line 511, in get
raise self.source_class.DoesNotExist(repr(kwargs))
neomodel.core.DoesNotExist: {'uuid': '776dfd0d89dc44dca6x65160472ce6f0'}
The text was updated successfully, but these errors were encountered:
Page http://neomodel.readthedocs.io/en/latest/getting_started.html mentions that:
So a class specific exception should be raised. Actually it does not. It raises: neomodel.core.DoesNotExist
The text was updated successfully, but these errors were encountered: