Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef Clustering1DException_H
0002 #define Clustering1DException_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 Clustering1DException : public cms::Exception {
0011 public:
0012   Clustering1DException(const char *reason) : cms::Exception(reason) {}
0013   Clustering1DException(const Clustering1DException &ex) : cms::Exception(ex) {}
0014 };
0015 
0016 #endif