File indexing completed on 2024-04-06 12:12:08
0001 #include "FWCore/Framework/interface/ESHandle.h"
0002 #include "FWCore/Framework/interface/ESHandleExceptionFactory.h"
0003 #include "FWCore/Utilities/interface/EDMException.h"
0004
0005 #include <exception>
0006
0007 namespace edm {
0008
0009 eventsetup::ComponentDescription const* ESHandleBase::description() const {
0010 if (!description_) {
0011 throw edm::Exception(edm::errors::InvalidReference, "NullPointer");
0012 }
0013 return description_;
0014 }
0015 }