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
例外のクラスの説明を返します。この説明は、例外インスタンスには関係ありません。
exceptionTypeName()
→ str
例外タイプの名前を返します。
異なるサブクラスのhou.Errorのインスタンスは、異なる名前を返します。
基底クラスのインスタンスは、"Error"
を返します。
str(e.__class__)
を使用することで、そのサブクラスの名前を取得することもできます。
instanceMessage()
→ str
例外インスタンス固有のメッセージを返します。