2015-05-28 18:38:29 +01:00
|
|
|
// Licensed under the Apache-2.0 license. See README.md for details.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2016-01-06 07:47:31 +00:00
|
|
|
#include <QDebug>
|
2023-08-02 17:35:35 +01:00
|
|
|
#include <QString>
|
2015-05-28 18:38:29 +01:00
|
|
|
#include <exception>
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
class 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()) {}
|
2018-07-15 13:51:05 +01:00
|
|
|
virtual ~Exception() noexcept {}
|
2023-08-02 17:35:35 +01:00
|
|
|
const char* what() const noexcept { return m_message.toLatin1().constData(); }
|
|
|
|
QString cause() const { return m_message; }
|
2015-05-28 18:38:29 +01:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
private:
|
2018-07-15 13:51:05 +01:00
|
|
|
QString m_message;
|
2015-05-28 18:38:29 +01:00
|
|
|
};
|