LArSoft  v09_90_00
Liquid Argon Software toolkit - https://larsoft.org/
ShowerRecoException.h
Go to the documentation of this file.
1 
14 #ifndef RECOTOOL_SHOWERRECOEXCEPTION_H
15 #define RECOTOOL_SHOWERRECOEXCEPTION_H
16 
17 #include <exception>
18 #include <string>
19 
20 namespace showerreco {
26 
27  public:
28  ShowerRecoException(std::string msg = "") : std::exception()
29  {
30  _msg = "\033[93m";
31  _msg += msg;
32  _msg += "\033[00m";
33  }
34 
35  virtual ~ShowerRecoException() throw(){};
36  virtual const char* what() const throw() { return _msg.c_str(); }
37 
38  private:
39  std::string _msg;
40  };
41 
42 }
43 #endif
44  // end of doxygen group
STL namespace.
ShowerRecoException(std::string msg="")
virtual const char * what() const
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33