rssguard/src/librssguard/exceptions/applicationexception.h
2019-06-10 09:54:18 +02:00

19 lines
403 B
C++

// For license of this file, see <project-root-folder>/LICENSE.md.
#ifndef APPLICATIONEXCEPTION_H
#define APPLICATIONEXCEPTION_H
#include <QString>
class ApplicationException {
public:
explicit ApplicationException(QString message = QString());
virtual ~ApplicationException() = default;
QString message() const;
private:
QString m_message;
};
#endif // APPLICATIONEXCEPTION_H