/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondCore/CondDB/src/Exception.cc
22 строки
684 B
Cms Build
Clang-Format
29 май 2019, 08:23
29 май 2019, 08:23
087900c
Код
Авторство
О чём код?
#include "CondCore/CondDB/interface/Exception.h" namespace cond { namespace persistency { Exception::Exception(const std::string& message) : cms::Exception("ConditionDatabase", message) {} Exception::Exception(const std::string& message, const std::string& methodName) : cms::Exception("ConditionDatabase", message + " from " + methodName) {} void throwException(const std::string& message, const std::string& methodName) { throw Exception(message, methodName); } } // namespace persistency void throwException(const std::string& message, const std::string& methodName) { throw Exception(message, methodName); } } // namespace cond