From 82b6cdcd04738f551208758cdb188c43dddbc709 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Mon, 19 Jun 2023 17:44:10 +0100 Subject: [PATCH] add error class OBSSDKTimeoutError --- obsws_python/error.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/obsws_python/error.py b/obsws_python/error.py index 67885a4..42719b1 100644 --- a/obsws_python/error.py +++ b/obsws_python/error.py @@ -1,4 +1,6 @@ class OBSSDKError(Exception): - """general errors""" + """Exception raised when general errors occur""" - pass + +class OBSSDKTimeoutError(Exception): + """Exception raised when a connection times out"""