8#include "daq/slc/base/Exception.h"
13 : m_comment(
""), m_err(0)
17Exception::Exception(
const std::string& comment)
18 : m_comment(comment), m_err(0)
22Exception::Exception(
const std::string& comment,
24 : m_comment(comment), m_err(err)
29const char* Exception::what() const noexcept
31const char* Exception::what()
const throw()
34 return m_comment.c_str();
Abstract base class for different kinds of events.