/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondTools/L1Trigger/interface/Exception.h
72 строки
2 KB
Cms Build
Clang-Format
29 май 2019, 08:24
29 май 2019, 08:24
1514b97
Код
Авторство
О чём код?
#ifndef CondTools_L1Trigger_Exception_h #define CondTools_L1Trigger_Exception_h // -*- C++ -*- // // Package: L1Trigger // Class : Exception // /**\class Exception Exception.h CondTools/L1Trigger/interface/Exception.h Description: <one line class summary> Usage: <usage> */ // // Original Author: Werner Sun // Created: Mon Mar 24 21:27:21 CET 2008 // $Id: Exception.h,v 1.1 2008/04/16 23:44:23 wsun Exp $ // // system include files #include <string> // user include files #include "CondCore/CondDB/interface/Exception.h" // forward declarations namespace l1t { class DataAlreadyPresentException : public cond::Exception { public: explicit DataAlreadyPresentException(const std::string& message); ~DataAlreadyPresentException() throw() override; // ---------- const member functions --------------------- // ---------- static member functions -------------------- // ---------- member functions --------------------------- private: //DataAlreadyPresentException(const DataAlreadyPresentException&); // stop default //const DataAlreadyPresentException& operator=(const DataAlreadyPresentException&); // stop default // ---------- member data -------------------------------- }; class DataInvalidException : public cond::Exception { public: explicit DataInvalidException(const std::string& message); ~DataInvalidException() throw() override; // ---------- const member functions --------------------- // ---------- static member functions -------------------- // ---------- member functions --------------------------- private: //DataInvalidException(const DataInvalidException&); // stop default //const DataInvalidException& operator=(const DataInvalidException&); // stop default // ---------- member data -------------------------------- }; } // namespace l1t #endif