-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTMoohIErrors.py
41 lines (35 loc) · 880 Bytes
/
TMoohIErrors.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
class RateLimitError(Exception):
def __init__(self, value):
self.value = value
def __str__(self):
return repr(self.value)
class TooManyChannelsError(Exception):
def __init__(self, value):
self.value = value
def __str__(self):
return repr(self.value)
class InvalidCommandError(Exception):
def __init__(self, value):
self.value = value
def __str__(self):
return repr(self.value)
class InvalidChannelError(Exception):
def __init__(self, value):
self.value = value
def __str__(self):
return repr(self.value)
class NotConnectedError(Exception):
def __init__(self):
pass
def __str__(self):
return "NotConnectedError"
class BubbleEvent(Exception):
def __init__(self):
pass
def __str__(self):
return "BubbleEvent"
class AlreadyDefinedError(Exception):
def __init__(self, value):
self.value = value
def __str__(self):
return repr(self.value)