CMS 3D CMS Logo

SimG4Exception.h
Go to the documentation of this file.
1 #ifndef SimG4Core_SimG4Exception_H
2 #define SimG4Core_SimG4Exception_H
3 
4 #include <exception>
5 #include <string>
6 
14 {
15 public:
16  SimG4Exception(const std::string & message) : error_(message) {}
17  ~SimG4Exception() throw() override {}
18  const char * what () const throw() override { return error_.c_str(); }
19 private:
21 };
22 
23 #endif
SimG4Exception(const std::string &message)
const char * what() const override
~SimG4Exception() override
std::string error_