#include "MutexException.h" #include namespace CCDom { MutexException::MutexException(const std::string& message, const std::string& file, int line) throw() : m_message() { std::ostringstream os; os << file << ":" << line << " " << message; m_message = os.str(); } const char * MutexException::what() const throw() { return m_message.c_str(); } MutexException::~MutexException() throw() { } }