#include <Exception.h>
Public Member Functions | |
Exception (const std::string &message, const std::string &methodname, const std::string &moduleName) | |
virtual char const * | what () const throw () |
virtual | ~Exception () throw () |
Private Attributes | |
std::string | m_message |
Definition at line 6 of file Exception.h.
Exception::Exception | ( | const std::string & | message, |
const std::string & | methodname, | ||
const std::string & | moduleName | ||
) |
Definition at line 2 of file Exception.cc.
virtual lumi::Exception::~Exception | ( | ) | throw () [inline, virtual] |
Definition at line 11 of file Exception.h.
{}
virtual char const* lumi::Exception::what | ( | ) | const throw () [inline, virtual] |
Definition at line 12 of file Exception.h.
References m_message.
Referenced by lumi::Lumi2DB::retrieveData().
{ return m_message.c_str(); }
std::string lumi::Exception::m_message [private] |
Definition at line 16 of file Exception.h.
Referenced by what().