summaryrefslogtreecommitdiff
path: root/ext/dsent/libutil/Exception.cc
blob: c6db0e3fb45d520de44b3ca8d837f7ce9f76f078 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "Exception.h"

namespace LibUtil
{
    Exception::Exception(const String& exception_msg_) throw()
        : exception(), mExceptionMsg(exception_msg_)
    {}

    Exception::~Exception() throw()
    {}

    const char* Exception::what() const throw()
    {
        return mExceptionMsg.c_str();
    }
}