summaryrefslogtreecommitdiffstats
path: root/logic/MMCError.h
diff options
context:
space:
mode:
authorJan Dalheimer <jan@dalheimer.de>2015-05-28 19:38:29 +0200
committerPetr Mrázek <peterix@gmail.com>2015-06-06 21:23:05 +0200
commit3a8b238052163952831fb5924b2483a375e86ebd (patch)
treeab120b4fac3a5345a20e7a09e1e7477e67d9ed6f /logic/MMCError.h
parent161dc66c2c8d5f973ee69dab36c3969a7efd7495 (diff)
downloadMultiMC-3a8b238052163952831fb5924b2483a375e86ebd.tar
MultiMC-3a8b238052163952831fb5924b2483a375e86ebd.tar.gz
MultiMC-3a8b238052163952831fb5924b2483a375e86ebd.tar.lz
MultiMC-3a8b238052163952831fb5924b2483a375e86ebd.tar.xz
MultiMC-3a8b238052163952831fb5924b2483a375e86ebd.zip
NOISSUE Various changes from multiauth that are unrelated to it
Diffstat (limited to 'logic/MMCError.h')
-rw-r--r--logic/MMCError.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/logic/MMCError.h b/logic/MMCError.h
deleted file mode 100644
index e81054a6..00000000
--- a/logic/MMCError.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#pragma once
-#include <exception>
-#include <QString>
-#include <QDebug>
-
-class MMCError : public std::exception
-{
-public:
- MMCError(QString cause)
- {
- exceptionCause = cause;
- qCritical() << "Exception: " + cause;
- };
- virtual ~MMCError() noexcept {}
- virtual const char *what() const noexcept
- {
- return exceptionCause.toLocal8Bit();
- };
- virtual QString cause() const
- {
- return exceptionCause;
- }
-private:
- QString exceptionCause;
-};