radio/lib/utils/exception.cpp
2018-08-05 00:48:17 +03:00

14 lines
191 B
C++

#include "exception.h"
Utils::Exception::Exception()
{
}
Utils::Exception::~Exception()
{
}
const char* Utils::Exception::what() const noexcept( true )
{
return getMessage().c_str();
}