summaryrefslogtreecommitdiffstats
path: root/logic/Exception.h
diff options
context:
space:
mode:
Diffstat (limited to 'logic/Exception.h')
-rw-r--r--logic/Exception.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/logic/Exception.h b/logic/Exception.h
deleted file mode 100644
index 30c7aa45..00000000
--- a/logic/Exception.h
+++ /dev/null
@@ -1,34 +0,0 @@
-// Licensed under the Apache-2.0 license. See README.md for details.
-
-#pragma once
-
-#include <QString>
-#include <QDebug>
-#include <exception>
-
-#include "multimc_logic_export.h"
-
-class MULTIMC_LOGIC_EXPORT Exception : public std::exception
-{
-public:
- Exception(const QString &message) : std::exception(), m_message(message)
- {
- qCritical() << "Exception:" << message;
- }
- Exception(const Exception &other)
- : std::exception(), m_message(other.cause())
- {
- }
- virtual ~Exception() noexcept {}
- const char *what() const noexcept
- {
- return m_message.toLatin1().constData();
- }
- QString cause() const
- {
- return m_message;
- }
-
-private:
- QString m_message;
-};