tahoma2d/toonz/sources/common/tcore/texception.cpp
Toshihiro Shimizu 890dddabbd first commit
2016-03-19 02:57:51 +09:00

15 lines
226 B
C++

#include "texception.h"
#include "tconvert.h"
TException::TException(const string &msg)
{
m_msg = toWideString(msg);
}
/*
ostream& operator<<(ostream &out, const TException &e)
{
return out<<e.getMessage().c_str();
}
*/