Back to home page

Project CMSSW displayed by LXR

 
 

    


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

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