All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
CMTException.h
Go to the documentation of this file.
1 /**
2  * \file CMTException.h
3  *
4  * \ingroup CMTool
5  *
6  * \brief Class def header for exception classes in CMTException
7  *
8  * @author kazuhiro
9  */
10 
11 /** \addtogroup CMTException
12 
13  @{*/
14 #ifndef RECOTOOL_CMTEXCEPTION_H
15 #define RECOTOOL_CMTEXCEPTION_H
16 
17 #include <exception>
18 #include <string>
19 
20 namespace cmtool {
21  /**
22  \class CMTException
23  Generic (base) exception class
24  */
25  class CMTException : public std::exception{
26 
27  public:
28 
29  CMTException(std::string msg="") : _msg(msg)
30  {}
31 
32  const char* what() const noexcept override
33  {return _msg.c_str(); }
34 
35  private:
36 
37  std::string _msg;
38  };
39 
40 }
41 #endif
42 /** @} */ // end of doxygen group
CMTException(std::string msg="")
Definition: CMTException.h:29
const char * what() const noexceptoverride
Definition: CMTException.h:32