Skip to content

Commit 7526494

Browse files
committed
Change YieldException to inherit from BaseException
1 parent 16940f8 commit 7526494

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from azure.durable_functions.models.Task import TaskBase
22

3-
class YieldException(Exception):
3+
class YieldException(BaseException):
44
def __init__(self, task: TaskBase):
55
super().__init__("Orchestrator should yield.")
66
self.task = task

0 commit comments

Comments
 (0)