Example #1
0
void cException::whereExceptionOccured(cString& ret)
{
    // XXX: NOT PORTABLE!
    ret = m_atFile;
    ret.concat(":");
    ret+= cString(m_atLine, 10, 10);
}