apikey_exceptions.py 204 B

1234567
  1. class apikey_syntax_error(Exception):
  2. """
  3. That exception had been raised when API key is not valid.
  4. """
  5. def __init__(self) -> None:
  6. super().__init__("That is not valid API key.")