Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:29:14

0001 #ifndef LinPtException_H
0002 #define LinPtException_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 LinPtException : public cms::Exception {
0011 public:
0012   LinPtException(const char* reason) : cms::Exception(reason){};
0013 };
0014 
0015 #endif