You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789101112 |
- from lodel import logger
-
- class AuthenticationError(Exception):
- pass
-
- class AuthenticationFailure(Exception):
-
- def __init__(self, client):
- msg = "%s : authentication failure" % client
- logger.security(msg)
- super().__init__(msg)
|