#include "common.h" BaseException::BaseException(const QString& msg) noexcept { _data._msg_value = msg; } QString BaseException::message() const noexcept { return _data._msg_value; }