Skip to content

Latest commit

 

History

History
65 lines (33 loc) · 1.14 KB

index.ListrErrorTypes.md

File metadata and controls

65 lines (33 loc) · 1.14 KB

Enumeration: ListrErrorTypes

index.ListrErrorTypes

The actual error type that is collected and to help identify where the error is triggered from.

Enumeration Members

WILL_RETRY

WILL_RETRY = "WILL_RETRY"

Task has failed and will try to retry.

Defined in

src/interfaces/listr-error.interface.ts:33


WILL_ROLLBACK

WILL_ROLLBACK = "WILL_ROLLBACK"

Task has failed and will try to rollback.

Defined in

src/interfaces/listr-error.interface.ts:35


HAS_FAILED_TO_ROLLBACK

HAS_FAILED_TO_ROLLBACK = "HAS_FAILED_TO_ROLLBACK"

Task has failed, ran the rollback action but the rollback action itself has failed.

Defined in

src/interfaces/listr-error.interface.ts:37


HAS_FAILED

HAS_FAILED = "HAS_FAILED"

Task has failed.

Defined in

src/interfaces/listr-error.interface.ts:39


HAS_FAILED_WITHOUT_ERROR

HAS_FAILED_WITHOUT_ERROR = "HAS_FAILED_WITHOUT_ERROR"

Task has failed, but exitOnError is set to false, so will ignore this error.

Defined in

src/interfaces/listr-error.interface.ts:41