You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`T-STD-00001`| Standard Functions | A standard runtime function failed due to invalid input shape/type, unsupported value semantics, or function-specific runtime constraints. | Wrong argument type, invalid value conversion, out-of-range operation, malformed function input. |`runtime/functions/*`|
15
+
|`T-CORE-000001`| Engine | Requested node id does not exist in the compiled flow plan. | Thunk/reference points to a node id not present in `CompiledFlow`. |`runtime/engine/executor.rs`|
16
+
|`T-CORE-000002`| Engine | Handler registry has no implementation for the node's runtime function id. | Function id was not registered in `FunctionStore`. |`runtime/engine/executor.rs`|
17
+
|`T-CORE-000003`| Engine | Flow requires remote execution but no remote runtime adapter was configured. | Node execution target is remote while `RemoteRuntime` is `None`. |`runtime/engine/executor.rs`|
18
+
|`T-CORE-000004`| Engine | Reference lookup failed in the execution value store. | Missing prior node result, missing flow input path, or unresolved input reference. |`runtime/engine/executor.rs`|
19
+
|`T-CORE-000005`| Engine | Remote request cannot be assembled because parameter metadata and resolved values diverge. | Parameter count mismatch during remote request materialization. |`runtime/engine/executor.rs`|
20
+
|`T-CORE-000101`| Compiler | Flow compilation failed because a node id appears more than once. | Duplicate `database_id` in input nodes. |`runtime/engine/compiler.rs`|
21
+
|`T-CORE-000102`| Compiler | Flow compilation failed because the declared start node is absent. |`start_node_id` not found in node list. |`runtime/engine/compiler.rs`|
22
+
|`T-CORE-000103`| Compiler | Flow compilation failed because a `next` edge points to a missing node. |`next_node_id` references unknown node id. |`runtime/engine/compiler.rs`|
23
+
|`T-CORE-000104`| Compiler | Flow compilation failed because a parameter is structurally incomplete. | Parameter has no value payload in IR. |`runtime/engine/compiler.rs`|
24
+
|`T-CORE-000201`| Handler | Handler argument arity contract was violated before function execution began. |`args!`/`no_args!` macro expected different argument count. |`handler/macros.rs`|
25
+
|`T-CORE-000202`| Handler | Handler argument type conversion failed during typed extraction. |`TryFromArgument` expected type does not match provided argument. |`handler/argument.rs`|
|`T-CORE-999999`| Runtime Error Fallback | Default fallback runtime error code when no explicit mapping is provided. |`RuntimeError::default()` used as defensive fallback. |`types/errors/runtime_error.rs`|
0 commit comments