From 90acafe95b052731c7a4b215e43023347357b76f Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Sun, 25 Jun 2023 02:06:02 +0100 Subject: [PATCH] `VBANCMDConnectionError` added --- vban_cmd/error.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/vban_cmd/error.py b/vban_cmd/error.py index 13252b2..10c47e5 100644 --- a/vban_cmd/error.py +++ b/vban_cmd/error.py @@ -1,4 +1,5 @@ class VBANCMDError(Exception): - """general errors""" + """Exception raised when general errors occur""" - pass +class VBANCMDConnectionError(Exception): + """Exception raised when connection/timeout errors occur"""