1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef StatisticsException_H
#define StatisticsException_H
#include "FWCore/Utilities/interface/Exception.h"
/**
* A class that wraps cms::Exception by deriving from it.
*/
class StatisticsException : public cms::Exception {
public:
StatisticsException(const char *reason) : cms::Exception(reason) {}
StatisticsException(const StatisticsException &ex) : cms::Exception(ex) {}
};
#endif
|