Skip to content

ErrorProcess

ErrorProcess

ErrorProcess(error: Optional[str] = 'Unknown error', details: Optional[str] = 'Unknown details', items: Optional[List[str]] = None)

Class to represent an error that occurs during process execution.

Attributes:

  • error (str) –

    A description of the error.

  • details (str) –

    Additional details about the error.

  • items (list) –

    Optional list of items or data related to the error.

details property

details: str

Returns additional details about the error.

error property

error: str

Returns the error description.

items property

items: List[str]

Returns the list of items related to the error.