7 lines
223 B
Python
7 lines
223 B
Python
|
|
class NoKeyFoundException(Exception):
|
|
"""Exception raised when an anime key cannot be found."""
|
|
pass
|
|
class MatchNotFoundError(Exception):
|
|
"""Exception raised when an anime key cannot be found."""
|
|
pass |