Exception.cc revision 10447
1#include "Exception.h"
2
3namespace LibUtil
4{
5    Exception::Exception(const String& exception_msg_) throw()
6        : exception(), mExceptionMsg(exception_msg_)
7    {}
8
9    Exception::~Exception() throw()
10    {}
11
12    const char* Exception::what() const throw()
13    {
14        return mExceptionMsg.c_str();
15    }
16}
17
18