2015-05-28 23:08:29 +05:30
|
|
|
// Licensed under the Apache-2.0 license. See README.md for details.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QString>
|
2016-01-06 13:17:31 +05:30
|
|
|
#include <QDebug>
|
2015-05-28 23:08:29 +05:30
|
|
|
#include <exception>
|
|
|
|
|
2015-09-05 22:16:57 +05:30
|
|
|
#include "multimc_logic_export.h"
|
|
|
|
|
|
|
|
class MULTIMC_LOGIC_EXPORT Exception : public std::exception
|
2015-05-28 23:08:29 +05:30
|
|
|
{
|
|
|
|
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;
|
|
|
|
};
|