Inheritance |
|
The hou.Node API has various methods for wiring and un-wiring inputs and outputs in the network. If you try to wire an object into a node output that is not a node or is not allowed to be wired to that output, Houdini will raise this exception.
Note that Houdini does allow certain wiring operations you might expect to fail (such as looping a node’s output back into its own output) but then immediately flags them as errors in the network editor.
¶
Methods from hou.Error ¶
description()
→ str
Return a description of the class of exception. The description is not related to the exception instance.
exceptionTypeName()
→ str
Return the name of the exception type. Instances of different
subclasses of hou.Error will return different names. Instances of the
base class will return "Error"
.
You can also use str(e.__class__)
to get the name of the subclass.
instanceMessage()
→ str
Return a message specific to the exception instance.