CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_5/src/DQMServices/Core/src/DQMError.h

Go to the documentation of this file.
00001 #ifndef DQMSERVICES_CORE_DQMEXCEPTION_H
00002 # define DQMSERVICES_CORE_DQMEXCEPTION_H
00003 
00004 # include <stdexcept>
00005 # if !WITHOUT_CMS_FRAMEWORK
00006 #  include "FWCore/Utilities/interface/EDMException.h"
00007 typedef cms::Exception DQMError;
00008 # else
00009 typedef std::runtime_error DQMError;
00010 # endif
00011 
00012 void raiseDQMError(const char *context, const char *fmt, ...);
00013 #endif