RuntimeSystemError
This error is raised when the underlying task execution fails because of a system error. This could be a bug in the Union system or a bug in the user's code.
Attributes
| Attribute | Type | Description |
|---|---|---|
| code | string | A unique identifier string representing the specific system error category encountered during task execution. |
| message | string | A detailed explanation of the system failure, which may originate from the Union system or user-defined logic. |
| worker | `string | null` = null |
Constructor
Signature
def RuntimeSystemError(
code: string,
message: string,
worker: string | None = None
)
Parameters
| Name | Type | Description |
|---|---|---|
| code | string | The specific error code associated with the system failure. |
| message | string | A detailed description of the error. |
| worker | `string | None` = None |
Signature
def RuntimeSystemError(
code: string,
message: string,
worker: string | None = None
) - > null
Parameters
| Name | Type | Description |
|---|---|---|
| code | string | The specific error code identifying the type of system failure encountered |
| message | string | A detailed explanation of the error, which may originate from the Union system or user-defined logic |
| worker | `string | None` = None |