CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Exception.h
Go to the documentation of this file.
1 #ifndef POPCON_EXCEPTION_H
2 #define POPCON_EXCEPTION_H
4 #include <string>
5 
6 namespace popcon {
7  class Exception : public cms::Exception{
8  public:
9  explicit Exception( const std::string& message ):cms::Exception("PopCon",message){}
11  };
12 }
13 #endif
std::string message() const
Definition: Exception.cc:187
Exception(const std::string &message)
Definition: Exception.h:9