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 ea21903 commit ba08583Copy full SHA for ba08583
src/diceutils/exceptions.py
@@ -14,8 +14,12 @@ class CommandRequired(DiceutilsException):
14
"""Raises when required command not provided."""
15
16
17
-class TooManyCardsError(Exception):
18
- """Raises when provided number bigger than expected."""
+class TooManyCardsError(DiceutilsException):
+ """Raises when provided index number bigger than expected."""
19
+
20
21
+class TooManyLoggersError(DiceutilsException):
22
+ """Raises when loggers count more than expected."""
23
24
25
class UnkownMode(DiceutilsException):
0 commit comments