From da1adb5073dad2ae9cd968dc6f213c9f027c46ce Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Mon, 2 Sep 2024 20:41:47 +0200 Subject: Remove ConnFailedException There were more unclear usage of this exception class, and since nothing catches it it is very unclear what the purpose is. Go ahead and just remove it. Follow-up to bcaaea7. --- common/rfb/Exception.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'common/rfb/Exception.h') diff --git a/common/rfb/Exception.h b/common/rfb/Exception.h index 4520bc8c..773c65fa 100644 --- a/common/rfb/Exception.h +++ b/common/rfb/Exception.h @@ -30,9 +30,5 @@ namespace rfb { AuthCancelledException() : Exception("Authentication cancelled") {} }; - struct ConnFailedException : public Exception { - ConnFailedException(const char* reason) - : Exception("%s", reason) {} - }; } #endif -- cgit v1.2.3