-
Notifications
You must be signed in to change notification settings - Fork 0
/
errors.py
44 lines (26 loc) · 941 Bytes
/
errors.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
class UserErrors:
class UserNotFound(Exception):
def __init__(self, message: str):
self.message = message
super().__init__(self.message)
def __str__(self):
return f'{self.message}'
class ExistingUser(Exception):
def __init__(self, message: str):
self.message = message
super().__init__(self.message)
def __str__(self):
return f'{self.message}'
class InvalidDictForm(Exception):
def __init__(self, message: str):
self.message = message
super().__init__(self.message)
def __str__(self):
return f'{self.message}'
class EmbedErrors:
class InvalidNeighborType(Exception):
def __init__(self, message: str):
self.message = message
super().__init__(self.message)
def __str__(self):
return f'{self.message}'