pynenc.workflow.workflow_exceptions

Module Contents

API

exception pynenc.workflow.workflow_exceptions.WorkflowError[source]

Bases: Exception

Base class for workflow-related exceptions.

Initialization

Initialize self. See help(type(self)) for accurate signature.

exception pynenc.workflow.workflow_exceptions.WorkflowPauseError(reason: str = '')[source]

Bases: pynenc.workflow.workflow_exceptions.WorkflowError

Raised when a workflow is explicitly paused.

This exception is handled by the workflow runner, which will pause execution and store the workflow state for later resumption.

Initialization

Initialize self. See help(type(self)) for accurate signature.