00001 00004 #ifndef Propagation_Exceptions_H 00005 #define Propagation_Exceptions_H 00006 00007 //#include <exception> 00008 #include "FWCore/Utilities/interface/Exception.h" 00009 00010 #include <string> 00011 00013 00014 class PropagationException : public cms::Exception { 00015 public: 00016 PropagationException( const std::string& message) throw() : cms::Exception(message) {} 00017 virtual ~PropagationException() throw() {} 00018 private: 00019 }; 00020 00021 #endif