forked from blue/squawk
14 lines
191 B
C++
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();
|
||
|
}
|