From 06700256890d3f74d27aeda27763dadd0a9317fa Mon Sep 17 00:00:00 2001 From: Andre Senna <“andre.senna@gmail.com”> Date: Mon, 4 Dec 2023 13:32:37 -0300 Subject: [PATCH] Expose NodeDoesNotExistException --- hyperon_das_atomdb/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hyperon_das_atomdb/__init__.py b/hyperon_das_atomdb/__init__.py index f2531161..9890d221 100644 --- a/hyperon_das_atomdb/__init__.py +++ b/hyperon_das_atomdb/__init__.py @@ -1,3 +1,4 @@ from .database import UNORDERED_LINK_TYPES, WILDCARD, AtomDB +from .exceptions import NodeDoesNotExistException -__all__ = ['AtomDB', 'WILDCARD', 'UNORDERED_LINK_TYPES'] +__all__ = ['AtomDB', 'WILDCARD', 'UNORDERED_LINK_TYPES', 'NodeDoesNotExistException']