Ejemplo n.º 1
0
BaseExc::BaseExc (std::stringstream &s) throw () :
    _message (s.str()),
    _stackTrace (currentStackTracer? currentStackTracer(): "")
{
    // empty
}
Ejemplo n.º 2
0
BaseExc::BaseExc (const char* s) throw () :
    _message (s? s: ""),
    _stackTrace (currentStackTracer? currentStackTracer(): "")
{
    // empty
}
Ejemplo n.º 3
0
BaseExc::BaseExc (const std::string &s) throw () :
    _message (s),
    _stackTrace (currentStackTracer? currentStackTracer(): "")
{
    // empty
}
Ejemplo n.º 4
0
BaseExc::BaseExc (const char* s) throw () :
    std::string (s? s: ""),
    _stackTrace (currentStackTracer? currentStackTracer(): "")
{
    // empty
}