Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:03:13

0001 // -*- C++ -*-
0002 //
0003 // Package:     L1Trigger
0004 // Class  :     Exception
0005 //
0006 // Implementation:
0007 //     <Notes on implementation>
0008 //
0009 // Original Author:  Werner Sun
0010 //         Created:  Mon Mar 24 21:38:43 CET 2008
0011 // $Id: Exception.cc,v 1.1 2008/04/16 23:44:23 wsun Exp $
0012 //
0013 
0014 // system include files
0015 
0016 // user include files
0017 #include "CondTools/L1Trigger/interface/Exception.h"
0018 
0019 //
0020 // constants, enums and typedefs
0021 //
0022 
0023 //
0024 // static data member definitions
0025 //
0026 
0027 //
0028 // constructors and destructor
0029 //
0030 l1t::DataAlreadyPresentException::DataAlreadyPresentException(const std::string& message) : cond::Exception(message) {}
0031 
0032 // DataAlreadyPresentException::DataAlreadyPresentException(const DataAlreadyPresentException& rhs)
0033 // {
0034 //    // do actual copying here;
0035 // }
0036 
0037 l1t::DataAlreadyPresentException::~DataAlreadyPresentException() throw() {}
0038 
0039 l1t::DataInvalidException::DataInvalidException(const std::string& message) : cond::Exception(message) {}
0040 
0041 l1t::DataInvalidException::~DataInvalidException() throw() {}
0042 
0043 //
0044 // assignment operators
0045 //
0046 // const DataAlreadyPresentException& DataAlreadyPresentException::operator=(const DataAlreadyPresentException& rhs)
0047 // {
0048 //   //An exception safe implementation is
0049 //   DataAlreadyPresentException temp(rhs);
0050 //   swap(rhs);
0051 //
0052 //   return *this;
0053 // }
0054 
0055 //
0056 // member functions
0057 //
0058 
0059 //
0060 // const member functions
0061 //
0062 
0063 //
0064 // static member functions
0065 //