/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
TrackingTools/DetLayers/interface/DetLayerException.h
23 строки
511 B
Cms Build
Clang-Format
31 май 2019, 13:16
31 май 2019, 13:16
38393ac
Код
Авторство
О чём код?
#ifndef DetLayers_DetLayerException_h #define DetLayers_DetLayerException_h /** \class DetLayerException * Exceptions thrown from TrackingTools/DetLayers and dependent subsystems. * */ /// Common base class #include "FWCore/Utilities/interface/Exception.h" #include <exception> #include <string> class DetLayerException : public cms::Exception { public: DetLayerException(const std::string& message) throw() : cms::Exception(message) {} ~DetLayerException() throw() override {} private: }; #endif