00001 #ifndef COND_METADATAEXCEPTIONS_H 00002 #define COND_METADATAEXCEPTIONS_H 00003 #include "CondCore/DBCommon/interface/Exception.h" 00004 #include <string> 00005 namespace cond{ 00006 class MetaDataDuplicateEntryException : public Exception{ 00007 public: 00008 MetaDataDuplicateEntryException(const std::string& source, 00009 const std::string& name); 00010 ~MetaDataDuplicateEntryException() throw(){} 00011 }; 00012 } 00013 #endif