We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fd5c7e commit c0faa1eCopy full SHA for c0faa1e
temporalio/workflow.py
@@ -985,6 +985,11 @@ def memo() -> Mapping[str, Any]:
985
986
987
def is_workflow_failure_exception(err: BaseException) -> bool:
988
+ """Checks if the given exception is a workflow failure in the current workflow.
989
+
990
+ Returns:
991
+ True if the given exception is a workflow failure in the current workflow.
992
+ """
993
return _Runtime.current().is_workflow_failure_exception(err)
994
995
0 commit comments