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