summaryrefslogtreecommitdiff
path: root/src/exceptions.h
diff options
context:
space:
mode:
authorkwolekr <kwolekr@minetest.net>2015-02-01 03:08:04 -0500
committerkwolekr <kwolekr@minetest.net>2015-02-02 01:39:17 -0500
commit43f102271dd3dc64b167ee305be5061976bd41d6 (patch)
tree25dc53b4aec9704ebff7ed0c0b4b3f3d0db2e87c /src/exceptions.h
parent48fa893abdaa7d7f29f7e909b326146b2f0606b9 (diff)
downloadminetest-43f102271dd3dc64b167ee305be5061976bd41d6.tar.gz
minetest-43f102271dd3dc64b167ee305be5061976bd41d6.tar.bz2
minetest-43f102271dd3dc64b167ee305be5061976bd41d6.zip
Create minidump on fatal Win32 exceptions
Remove software exception translator function, simplifying exception handler macros. FatalSystemExceptions are left unhandled.
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) {}