tahoma2d/toonz/sources/common/tcore/texception.cpp

16 lines
231 B
C++
Raw Normal View History

2016-03-19 06:57:51 +13:00
#include "texception.h"
#include "tconvert.h"
TException::TException(const std::string &msg)
2016-03-19 06:57:51 +13:00
{
m_msg = ::to_wstring(msg);
2016-03-19 06:57:51 +13:00
}
/*
ostream& operator<<(ostream &out, const TException &e)
{
return out<<e.getMessage().c_str();
}
*/