/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
TrackingTools/MeasurementDet/interface/MeasurementDetException.h
18 строк
462 B
Cms Build
Clang-Format
03 июн 2019, 06:51
03 июн 2019, 06:51
c1b767c
Код
Авторство
О чём код?
/** Exceptions thrown from TrajectoryParametrization and dependent subsystems. */ #ifndef MeasurementDetExceptions_H #define MeasurementDetExceptions_H #include <string> #include "FWCore/Utilities/interface/Exception.h" /// Common base class class MeasurementDetException : public cms::Exception { public: MeasurementDetException(const std::string& message) throw() : cms::Exception(message) {} ~MeasurementDetException() throw() override {} }; #endif