Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-09-07 04:35:20

0001 #ifndef StatisticsException_H
0002 #define StatisticsException_H
0003 
0004 #include "FWCore/Utilities/interface/Exception.h"
0005 
0006 /** 
0007    *  A class that wraps cms::Exception by deriving from it.
0008    */
0009 
0010 class StatisticsException : public cms::Exception {
0011 public:
0012   StatisticsException(const char *reason) : cms::Exception(reason) {}
0013   StatisticsException(const StatisticsException &ex) : cms::Exception(ex) {}
0014 };
0015 
0016 #endif