Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:01:43

0001 #ifndef POPCON_EXCEPTION_H
0002 #define POPCON_EXCEPTION_H
0003 #include "FWCore/Utilities/interface/Exception.h"
0004 #include <string>
0005 
0006 namespace popcon {
0007   class Exception : public cms::Exception {
0008   public:
0009     explicit Exception(const std::string& message) : cms::Exception("PopCon", message) {}
0010     ~Exception() throw() override {}
0011   };
0012 }  // namespace popcon
0013 #endif