CMS 3D CMS Logo

ESValidHandle.cc
Go to the documentation of this file.
3 
4 namespace edm::esvhhelper {
5  void throwIfNotValid(const void* iProduct) noexcept(false) {
6  if (nullptr == iProduct) {
7  throw cms::Exception("Invalid Product") << "Attempted to fill a edm::ESValidHandle with an invalid product";
8  }
9  }
10 } // namespace edm::esvhhelper
void throwIfNotValid(const void *) noexcept(false)
Definition: ESValidHandle.cc:5