Throw¶
Throw an Exception.
This will interrupt the execution at the current point and fall through to the nearest enclosing Exception Guard node that lists the thrown exception type (or a more general one) in its list of exceptions to catch. For the hierarchy of throwable exceptions, see also Python's documentation. More Info... Version 1.0.0
Ports/Properties¶
result¶
Result of the graph.
exception_type¶
Exception type to throw. You can find documentation about these types in the Python documentation.
message¶
Message to include in the exception.
cause¶
Causing exception. If this is set, the provided exception will be recorded as the cause of the exception being thrown. This is useful for chaining exceptions together.
set_breakpoint¶
Set a breakpoint on this node. If this is enabled, your debugger (if one is attached) will trigger a breakpoint.
metadata¶
User-definable meta-data associated with the node. Usually reserved for technical purposes.