[docs]class NotFoundNodeError(Exception):
"""Requested node identifier is not present in tree"""
pass
[docs]class MultipleRootError(Exception):
"""Tree root is already declared."""
pass
[docs]class DuplicatedNodeError(Exception):
"""Node identifier already exists in tree."""
pass