Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-11-04 06:48:47

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(const std::string& category, const std::string& message) : cms::Exception(category, message) {}
0011     ~Exception() throw() override {}
0012   };
0013 }  // namespace popcon
0014 #endif