3 lines
116 B
Python
3 lines
116 B
Python
|
|
class TooManyConnections(Exception):
|
||
|
|
def __init__():
|
||
|
|
super().__init__("Too many concurrent connections")
|