/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondCore/PopCon/interface/Exception.h
14 строк
468 B
francescobrivio
Introduce OnlinePopCon mechanism
29 окт 2024, 13:48
29 окт 2024, 13:48
e279771
Код
Авторство
О чём код?
#ifndef POPCON_EXCEPTION_H #define POPCON_EXCEPTION_H #include "FWCore/Utilities/interface/Exception.h" #include <string> namespace popcon { class Exception : public cms::Exception { public: explicit Exception(const std::string& message) : cms::Exception("PopCon", message) {} Exception(const std::string& category, const std::string& message) : cms::Exception(category, message) {} ~Exception() throw() override {} }; } // namespace popcon #endif