![]() |
![]() |
#include <Iguana/Framework/interface/IgNetError.h>
Public Member Functions | |
virtual lat::Error * | clone (void) const |
| |
virtual std::string | explainSelf (void) const |
Explain this exception object. | |
IgNetError (const std::string &reason, lat::Error *next) | |
virtual void | rethrow (void) |
| |
Private Attributes | |
std::string | m_reason |
Definition at line 15 of file IgNetError.h.
IgNetError::IgNetError | ( | const std::string & | reason, | |
lat::Error * | next | |||
) |
lat::Error * IgNetError::clone | ( | void | ) | const [virtual] |
Implements lat::Error.
Definition at line 27 of file IgNetError.cc.
References IgNetError().
00028 { return new IgNetError (*this); }
std::string IgNetError::explainSelf | ( | void | ) | const [virtual] |
Explain this exception object.
Implements lat::Error.
Definition at line 22 of file IgNetError.cc.
References m_reason.
00023 { return m_reason; }
std::string IgNetError::m_reason [private] |