Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 /** Exceptions thrown from TrajectoryParametrization and dependent subsystems.
0002  */
0003 
0004 #ifndef MeasurementDetExceptions_H
0005 #define MeasurementDetExceptions_H
0006 
0007 #include <string>
0008 #include "FWCore/Utilities/interface/Exception.h"
0009 
0010 /// Common base class
0011 
0012 class MeasurementDetException : public cms::Exception {
0013 public:
0014   MeasurementDetException(const std::string& message) throw() : cms::Exception(message) {}
0015   ~MeasurementDetException() throw() override {}
0016 };
0017 
0018 #endif