diff --git a/src/exceptions.py b/src/exceptions.py new file mode 100644 index 0000000..04a60b5 --- /dev/null +++ b/src/exceptions.py @@ -0,0 +1,3 @@ +class TooManyConnections(Exception): + def __init__(): + super().__init__("Too many concurrent connections") \ No newline at end of file