2021-07-24 17:09:10 -04:00
|
|
|
class UserNotFoundError(Exception):
|
2021-08-22 17:57:36 -04:00
|
|
|
def __init__(self, username):
|
|
|
|
super().__init__(f"user '{username}' not found")
|
2021-07-24 17:09:10 -04:00
|
|
|
|
|
|
|
|
|
|
|
class GroupNotFoundError(Exception):
|
2021-08-22 17:57:36 -04:00
|
|
|
def __init__(self, group_name):
|
|
|
|
super().__init__(f"group '{group_name}' not found")
|
2021-08-02 04:01:13 -04:00
|
|
|
|
|
|
|
|
|
|
|
class BadRequest(Exception):
|
|
|
|
pass
|
2021-08-03 16:11:13 -04:00
|
|
|
|
|
|
|
|
2021-08-17 21:59:24 -04:00
|
|
|
class KerberosError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2021-08-03 19:19:33 -04:00
|
|
|
class UserAlreadyExistsError(Exception):
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__('user already exists')
|
|
|
|
|
|
|
|
|
|
|
|
class GroupAlreadyExistsError(Exception):
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__('group already exists')
|
|
|
|
|
|
|
|
|
2021-08-18 19:48:17 -04:00
|
|
|
class UserAlreadyInGroupError(Exception):
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__('user is already in group')
|
|
|
|
|
|
|
|
|
|
|
|
class UserNotInGroupError(Exception):
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__('user is not in group')
|
|
|
|
|
|
|
|
|
2021-08-03 16:11:13 -04:00
|
|
|
class UserAlreadySubscribedError(Exception):
|
2021-08-03 19:19:33 -04:00
|
|
|
def __init__(self):
|
|
|
|
super().__init__('user is already subscribed')
|
2021-08-03 16:11:13 -04:00
|
|
|
|
|
|
|
|
|
|
|
class UserNotSubscribedError(Exception):
|
2021-08-03 19:19:33 -04:00
|
|
|
def __init__(self):
|
|
|
|
super().__init__('user is not subscribed')
|
|
|
|
|
|
|
|
|
|
|
|
class NoSuchListError(Exception):
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__('mailing list does not exist')
|
2021-08-29 13:08:35 -04:00
|
|
|
|
|
|
|
|
|
|
|
class InvalidUsernameError(Exception):
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__('Username contains characters that are not allowed')
|
|
|
|
|
|
|
|
|
|
|
|
class DatabaseConnectionError(Exception):
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__('unable to connect or authenticate to sql service')
|
|
|
|
|
|
|
|
|
|
|
|
class DatabasePermissionError(Exception):
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__('unable to perform action due to lack of permissions')
|