CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Exception.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: L1Trigger
4 // Class : Exception
5 //
6 // Implementation:
7 // <Notes on implementation>
8 //
9 // Original Author: Werner Sun
10 // Created: Mon Mar 24 21:38:43 CET 2008
11 // $Id: Exception.cc,v 1.2 2009/08/14 19:58:11 wsun Exp $
12 //
13 
14 // system include files
15 
16 // user include files
18 
19 
20 //
21 // constants, enums and typedefs
22 //
23 
24 //
25 // static data member definitions
26 //
27 
28 //
29 // constructors and destructor
30 //
32  const std::string& message )
33  : cond::Exception( message )
34 {
35 }
36 
37 // DataAlreadyPresentException::DataAlreadyPresentException(const DataAlreadyPresentException& rhs)
38 // {
39 // // do actual copying here;
40 // }
41 
43 {
44 }
45 
47  const std::string& message )
48  : cond::Exception( message )
49 {
50 }
51 
53 {
54 }
55 
56 //
57 // assignment operators
58 //
59 // const DataAlreadyPresentException& DataAlreadyPresentException::operator=(const DataAlreadyPresentException& rhs)
60 // {
61 // //An exception safe implementation is
62 // DataAlreadyPresentException temp(rhs);
63 // swap(rhs);
64 //
65 // return *this;
66 // }
67 
68 //
69 // member functions
70 //
71 
72 //
73 // const member functions
74 //
75 
76 //
77 // static member functions
78 //
virtual ~DataInvalidException()
Definition: Exception.cc:52
DataInvalidException(const std::string &message)
Definition: Exception.cc:46
DataAlreadyPresentException(const std::string &message)
Definition: Exception.cc:31