mirror of
https://github.com/Icinga/icinga2.git
synced 2026-02-03 20:40:17 -05:00
22 lines
247 B
C++
22 lines
247 B
C++
|
|
#include "i2-base.h"
|
||
|
|
|
||
|
|
using namespace icinga;
|
||
|
|
|
||
|
|
Exception::Exception(void)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
Exception::Exception(const string& message)
|
||
|
|
{
|
||
|
|
m_Message = message;
|
||
|
|
}
|
||
|
|
|
||
|
|
Exception::~Exception(void)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
string Exception::GetMessage(void) const
|
||
|
|
{
|
||
|
|
return m_Message;
|
||
|
|
}
|