示例#1
0
文件: MsgIntf.cpp 项目: harada3/krkrz
void TVPThrowExceptionMessage(const tjs_char *msg, const ttstr & p1,
	const ttstr & p2)
{
	throw eTJSError(TVPFormatMessage(msg, p1, p2));
}
示例#2
0
文件: MsgIntf.cpp 项目: harada3/krkrz
void TVPThrowExceptionMessage(const tjs_char *msg, const ttstr & p1, tjs_int num)
{
	throw eTJSError(TVPFormatMessage(msg, p1, ttstr(num)));
}
示例#3
0
void TJS_eTJSError(const tjs_char* msg) { throw eTJSError(msg); }
示例#4
0
文件: MsgIntf.cpp 项目: harada3/krkrz
//---------------------------------------------------------------------------
// TVPThrowExceptionMessage
//---------------------------------------------------------------------------
void TVPThrowExceptionMessage(const tjs_char *msg)
{
	throw eTJSError(msg);
}
示例#5
0
//---------------------------------------------------------------------------
void TJS_eTJSError(const ttstr & msg) { throw eTJSError(msg); }