summaryrefslogtreecommitdiff
path: root/src/exceptions.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/exceptions.h')
-rw-r--r--src/exceptions.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/exceptions.h b/src/exceptions.h
index abd8c68ae..5b716c2ca 100644
--- a/src/exceptions.h
+++ b/src/exceptions.h
@@ -110,12 +110,6 @@ public:
ServerError(const std::string &s): BaseException(s) {}
};
-// Only used on Windows (SEH)
-class FatalSystemException : public BaseException {
-public:
- FatalSystemException(const std::string &s): BaseException(s) {}
-};
-
class ClientStateError : public BaseException {
public:
ClientStateError(std::string s): BaseException(s) {}