]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - src/exceptions.h
Fix MinGW build
[dragonfireclient.git] / src / exceptions.h
index 458fb50b1b7090db65e11f88da49984d450c0339..085b424177af20c1bc861afe5ea1d5f619caacc6 100644 (file)
@@ -140,6 +140,15 @@ class ItemNotFoundException : public BaseException
        {}
 };
 
+// Only used on Windows (SEH)
+class FatalSystemException : public BaseException
+{
+public:
+       FatalSystemException(const char *s):
+               BaseException(s)
+       {}
+};
+
 /*
        Some "old-style" interrupts:
 */