summaryrefslogtreecommitdiff
path: root/shell/source/win32/zipfile/zipexcptn.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'shell/source/win32/zipfile/zipexcptn.hxx')
-rw-r--r--shell/source/win32/zipfile/zipexcptn.hxx6
1 files changed, 0 insertions, 6 deletions
diff --git a/shell/source/win32/zipfile/zipexcptn.hxx b/shell/source/win32/zipfile/zipexcptn.hxx
index 6fb7c0d971b7..f6c6205058da 100644
--- a/shell/source/win32/zipfile/zipexcptn.hxx
+++ b/shell/source/win32/zipfile/zipexcptn.hxx
@@ -24,7 +24,6 @@
#include <stdexcept>
-
class RuntimeException : public std::exception
{
public:
@@ -37,7 +36,6 @@ private:
int m_Error;
};
-
class ZipException : public RuntimeException
{
public:
@@ -46,7 +44,6 @@ public:
virtual const char* what() const throw() override;
};
-
class Win32Exception : public RuntimeException
{
public:
@@ -59,21 +56,18 @@ private:
mutable char* m_MsgBuff;
};
-
class ZipContentMissException : public ZipException
{
public:
explicit ZipContentMissException(int Error);
};
-
class AccessViolationException : public Win32Exception
{
public:
explicit AccessViolationException(int Error);
};
-
class IOException : public Win32Exception
{
public: