Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:31:26

0001 #ifndef DetLayers_DetLayerException_h
0002 #define DetLayers_DetLayerException_h
0003 
0004 /** \class DetLayerException
0005  *  Exceptions thrown from TrackingTools/DetLayers and dependent subsystems.
0006  *
0007  */
0008 
0009 /// Common base class
0010 #include "FWCore/Utilities/interface/Exception.h"
0011 
0012 #include <exception>
0013 #include <string>
0014 
0015 class DetLayerException : public cms::Exception {
0016 public:
0017   DetLayerException(const std::string& message) throw() : cms::Exception(message) {}
0018   ~DetLayerException() throw() override {}
0019 
0020 private:
0021 };
0022 
0023 #endif