1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
// -*- C++ -*-
//
// Package: DataFormats/Common
// Class : edm::HandleExceptionFactory
//
// Implementation:
// [Notes on implementation]
//
// Original Author: Chris Jones
// Created: Wed, 04 Dec 2013 16:47:16 GMT
//
// system include files
// user include files
#include "DataFormats/Common/interface/HandleExceptionFactory.h"
//
// constants, enums and typedefs
//
//
// static data member definitions
//
//
// constructors and destructor
//
edm::HandleExceptionFactory::HandleExceptionFactory() {}
// HandleExceptionFactory::HandleExceptionFactory(const HandleExceptionFactory& rhs)
// {
// // do actual copying here;
// }
edm::HandleExceptionFactory::~HandleExceptionFactory() {}
|