diff options
author | Pierre Ossman <ossman@cendio.se> | 2024-09-02 20:41:47 +0200 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2024-09-02 20:41:47 +0200 |
commit | da1adb5073dad2ae9cd968dc6f213c9f027c46ce (patch) | |
tree | fb6ce46052179f2ab5e139fa1c65363a00fb14d1 /common/rfb/Exception.h | |
parent | 2e3347768d3d19852e2c575d1b9425e23d6efa87 (diff) | |
download | tigervnc-da1adb5073dad2ae9cd968dc6f213c9f027c46ce.tar.gz tigervnc-da1adb5073dad2ae9cd968dc6f213c9f027c46ce.zip |
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.
Diffstat (limited to 'common/rfb/Exception.h')
-rw-r--r-- | common/rfb/Exception.h | 4 |
1 files changed, 0 insertions, 4 deletions
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 |