From 43f102271dd3dc64b167ee305be5061976bd41d6 Mon Sep 17 00:00:00 2001 From: kwolekr Date: Sun, 1 Feb 2015 03:08:04 -0500 Subject: Create minidump on fatal Win32 exceptions Remove software exception translator function, simplifying exception handler macros. FatalSystemExceptions are left unhandled. --- src/exceptions.h | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/exceptions.h') 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) {} -- cgit v1.2.3