Example #1
0
void FileIn::warning(WrapperStr s)
{
    WrapperStr num;
    WrapperStr warn = WrapperStr("warning in ") + _path + " line " +
                     num.setNum(_linenum) + " : " + s + "<br>";

    UmlCom::trace(warn);

}
Example #2
0
void FileIn::error(WrapperStr s)
{
    WrapperStr num;
    WrapperStr err = WrapperStr("error in ") + _path + " line " +
                    num.setNum(_linenum) + " : " + s + "<br>";

    UmlCom::trace(err);
    throw 0;
}