diff options
Diffstat (limited to 'proto-wine/proton.h')
-rw-r--r-- | proto-wine/proton.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/proto-wine/proton.h b/proto-wine/proton.h deleted file mode 100644 index 08179c3d..00000000 --- a/proto-wine/proton.h +++ /dev/null @@ -1,23 +0,0 @@ -#pragma once - -#include <QString> -#include <QException> - -class ProtonException : public QException -{ -public: - ProtonException(const QString& message) - : message(message) {} - - virtual ~ProtonException() - {} - - void raise() const { throw *this; } - ProtonException *clone() const { return new ProtonException(*this); } - - QString getMessage() const { - return message; - } -private: - QString message; -}; |