/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoVertex/VertexPrimitives/interface/VertexException.h
18 строк
443 B
Christopher Jones
Do not replicate cms::Exception functionality in VertexException
02 май 2022, 16:47
02 май 2022, 16:47
03f5867
Код
Авторство
О чём код?
/** Exceptions thrown from RecoVertex dependent subsystems. */ #ifndef Vertex_Exceptions_H #define Vertex_Exceptions_H #include "FWCore/Utilities/interface/Exception.h" #include <string> /// Common base class class VertexException : public cms::Exception { public: VertexException() : cms::Exception("VertexException") {} explicit VertexException(const std::string& message) : cms::Exception("VertexException", message) {} }; #endif