radio/lib/utils/exception.cpp

14 lines
191 B
C++
Raw Permalink Normal View History

2018-08-04 21:46:25 +00:00
#include "exception.h"
Utils::Exception::Exception()
{
}
Utils::Exception::~Exception()
{
}
const char* Utils::Exception::what() const noexcept( true )
{
return getMessage().c_str();
}