Exemplo n.º 1
0
std::string exception2string(const CException& e)
{
	std::string strMsg = std::string(e.what());
	if (strMsg.empty())
	{
		strMsg = std::string("空内容的 LCSH 标准异常");
	}
	return strMsg;
}
Exemplo n.º 2
0
void CErrorHandler::exception(const CException& exc)
{
	poco_debugger_msg(exc.what());
}