tahoma2d/toonz/sources/common/tstream/tstreamexception.cpp
Shinya Kitaoka 3bfa549e8b remove "using"
- using std::string;
- using std::wstring;
- using std::ostream;
- using std::istream;
- using std::iostream;
- using std::ostrstream;
- using std::istrstream;
- using std::fstream;
2016-04-21 16:23:15 +09:00

52 lines
947 B
C++

#include "tstreamexception.h"
#include "tfilepath.h"
#include "tconvert.h"
#include "tstream.h"
namespace
{
std::wstring getLocation(TIStream &is)
{
return L"File: " +
is.getFilePath().getWideString() +
L":" + toWideString(is.getLine());
}
std::wstring message(TIStream &is, std::wstring msg)
{
return getLocation(is) + L"\n" + msg;
}
std::wstring message(TIStream &is, std::string msg)
{
return message(is, toWideString(msg));
}
} // namespace
TIStreamException::TIStreamException(TIStream &is)
: TException(message(is, L"unknown exception"))
{
}
TIStreamException::TIStreamException(TIStream &is, const TException &e)
: TException(message(is, e.getMessage()))
{
}
TIStreamException::TIStreamException(TIStream &is, std::wstring msg)
: TException(message(is, msg))
{
}
TIStreamException::TIStreamException(TIStream &is, std::string msg)
: TException(message(is, msg))
{
}
TIStreamException::~TIStreamException()
{
}