mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 02:06:40 +00:00
48 lines
702 B
C++
48 lines
702 B
C++
#include <fnd/Exception.h>
|
|
|
|
using namespace fnd;
|
|
|
|
Exception::Exception() noexcept :
|
|
what_(""),
|
|
module_(""),
|
|
error_("")
|
|
{
|
|
|
|
}
|
|
|
|
Exception::Exception(const std::string & what) noexcept :
|
|
what_(what),
|
|
module_(""),
|
|
error_(what)
|
|
{
|
|
}
|
|
|
|
Exception::Exception(const std::string & module, const std::string & what) noexcept :
|
|
what_(""),
|
|
module_(module),
|
|
error_(what)
|
|
{
|
|
if (module_.length() > 0)
|
|
{
|
|
what_ = "[" + module_ + " ERROR] " + error_;
|
|
}
|
|
else
|
|
{
|
|
what_ = error_;
|
|
}
|
|
}
|
|
|
|
const char* Exception::what() const noexcept
|
|
{
|
|
return what_.c_str();
|
|
}
|
|
|
|
const char* Exception::module() const noexcept
|
|
{
|
|
return module_.c_str();
|
|
}
|
|
|
|
const char * fnd::Exception::error() const noexcept
|
|
{
|
|
return nullptr;
|
|
}
|