/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/Framework/src/MakeDataException.cc
20 строк
842 B
W. David Dagenhart
Only changes from scram build code-format-all
30 апр 2019, 22:05
30 апр 2019, 22:05
23d7339
Код
Авторство
О чём код?
#include "FWCore/Framework/interface/MakeDataException.h" // forward declarations namespace edm { namespace eventsetup { MakeDataException::MakeDataException(const EventSetupRecordKey& iRecordKey, const DataKey& iDataKey) : cms::Exception("MakeDataException"), message_(standardMessage(iRecordKey, iDataKey)) { this->append(myMessage()); } // ---------- static member functions -------------------- std::string MakeDataException::standardMessage(const EventSetupRecordKey& iRecordKey, const DataKey& iDataKey) { std::string returnValue = std::string("Error while making data \"") + iDataKey.type().name() + "\" \"" + iDataKey.name().value() + "\" in Record " + iRecordKey.type().name(); return returnValue; } } // namespace eventsetup } // namespace edm