コード例 #1
0
ファイル: IexBaseExc.cpp プロジェクト: Ericson2314/openexr
BaseExc::BaseExc (std::stringstream &s) throw () :
    _message (s.str()),
    _stackTrace (currentStackTracer? currentStackTracer(): "")
{
    // empty
}
コード例 #2
0
ファイル: IexBaseExc.cpp プロジェクト: Ericson2314/openexr
BaseExc::BaseExc (const char* s) throw () :
    _message (s? s: ""),
    _stackTrace (currentStackTracer? currentStackTracer(): "")
{
    // empty
}
コード例 #3
0
ファイル: IexBaseExc.cpp プロジェクト: Ericson2314/openexr
BaseExc::BaseExc (const std::string &s) throw () :
    _message (s),
    _stackTrace (currentStackTracer? currentStackTracer(): "")
{
    // empty
}
コード例 #4
0
ファイル: IexBaseExc.cpp プロジェクト: 09beezahmad/opencv
BaseExc::BaseExc (const char* s) throw () :
    std::string (s? s: ""),
    _stackTrace (currentStackTracer? currentStackTracer(): "")
{
    // empty
}