Skip to content

Commit

Permalink
TaskTimeoutError should be BaseException instead of Exception (#241)
Browse files Browse the repository at this point in the history
  • Loading branch information
psrok1 authored Jan 17, 2024
1 parent 8597ebe commit 46ffc2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion karton/core/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ class InvalidIdentityError(Exception):
pass


class TaskTimeoutError(Exception):
class TaskTimeoutError(BaseException):
pass


Expand Down

0 comments on commit 46ffc2e

Please sign in to comment.