Skip to main content

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

AttributeTypeDescription
codestringA unique identifier string representing the specific system error category encountered during task execution.
messagestringA detailed explanation of the system failure, which may originate from the Union system or user-defined logic.
worker`stringnull` = null

Constructor

Signature

def RuntimeSystemError(
code: string,
message: string,
worker: string | None = None
)

Parameters

NameTypeDescription
codestringThe specific error code associated with the system failure.
messagestringA detailed description of the error.
worker`stringNone` = None

Signature

def RuntimeSystemError(
code: string,
message: string,
worker: string | None = None
) - > null

Parameters

NameTypeDescription
codestringThe specific error code identifying the type of system failure encountered
messagestringA detailed explanation of the error, which may originate from the Union system or user-defined logic
worker`stringNone` = None