13 lines
188 B
C++
13 lines
188 B
C++
|
#include "common.h"
|
||
|
|
||
|
|
||
|
BaseException::BaseException(const QString& msg) noexcept
|
||
|
{
|
||
|
_data._msg_value = msg;
|
||
|
}
|
||
|
|
||
|
QString BaseException::message() const noexcept
|
||
|
{
|
||
|
return _data._msg_value;
|
||
|
}
|