Skip to main content

NameNotFound

This error means that there is no Node with the name that you provided.

Here's an example:

x = Node()
x.get('test')
# or
x.test

Output: <RootNode>.test does not exist

The error message will always write the text <RootNode> since the method returning will not be able to determine what you have named the variable containing the Node object. For more information, see Terminology.