CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_1/src/TrackingTools/DetLayers/interface/DetLayerException.h

Go to the documentation of this file.
00001 #ifndef DetLayers_DetLayerException_h
00002 #define DetLayers_DetLayerException_h
00003 
00011 
00012 #include "FWCore/Utilities/interface/Exception.h"
00013 
00014 #include <exception>
00015 #include <string>
00016 
00017 class DetLayerException : public cms::Exception {
00018 public:
00019   DetLayerException( const std::string& message) throw() : cms::Exception(message)  {}
00020   virtual ~DetLayerException() throw() {}
00021 private:
00022 };
00023 
00024 #endif