Skip to content

Commit

Permalink
fix: 🐛 inherit from Exception instead of BaseException
Browse files Browse the repository at this point in the history
  • Loading branch information
bashirmindee committed Oct 28, 2024
1 parent 8eb2570 commit 51fb49b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tawazi/errors.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Module for custom errors raised by Tawazi."""


class TawaziBaseException(BaseException):
class TawaziBaseException(Exception):
"""BaseException of Tawazi from which all other exceptions inherit."""

pass
Expand Down

0 comments on commit 51fb49b

Please sign in to comment.