1 #include "daq/slc/base/Exception.h"
6 : m_comment(
""), m_err(0)
10 Exception::Exception(
const std::string& comment)
11 : m_comment(comment), m_err(0)
15 Exception::Exception(
const std::string& comment,
17 : m_comment(comment), m_err(err)
22 const char* Exception::what() const noexcept
24 const char* Exception::what()
const throw()
27 return m_comment.c_str();