Example #1
0
Error::Error(guint64 errno, const Glib::ustring & message,
             const std::string & function, const std::string & filename,
             guint64 line) :
    std::exception(),
    errno_(errno),
    message_(message),
    callStack_()
{
    add_call_info(function, filename, line);    
}
Example #2
0
 void add_call_info_here(CodeEmitInfo* info)                              { add_call_info(code_offset(), info); }