/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
TrackingTools/GeomPropagators/interface/PropagationExceptions.h
22 строки
489 B
Patrick Gartung
Reconstruction and upgrade packages: cleanup use of GCC11Compatibility.h and macro GCC11_FINAL
06 мар 2020, 01:09
06 мар 2020, 01:09
2bb6c1a
Код
Авторство
О чём код?
/** Exceptions thrown from TrajectoryParametrization and dependent subsystems. */ #ifndef Propagation_Exceptions_H #define Propagation_Exceptions_H //#include <exception> #include "FWCore/Utilities/interface/Exception.h" #include <string> /// Common base class class PropagationException final : public cms::Exception { public: PropagationException(const std::string& message) throw() : cms::Exception(message) {} ~PropagationException() throw() override {} private: }; #endif