We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ce2111 commit c49536bCopy full SHA for c49536b
FWCore/Framework/src/ModuleHolder.cc
@@ -0,0 +1,12 @@
1
+#include "FWCore/Framework/interface/maker/ModuleHolder.h"
2
+#include "FWCore/Utilities/interface/Exception.h"
3
+
4
+void edm::maker::ModuleHolder::registerThinnedAssociations(ProductRegistry const& registry,
5
+ ThinnedAssociationsHelper& helper) {
6
+ try {
7
+ implRegisterThinnedAssociations(registry, helper);
8
+ } catch (cms::Exception& ex) {
9
+ ex.addContext("Calling registerThinnedAssociations() for module " + moduleDescription().moduleLabel());
10
+ throw ex;
11
+ }
12
+}
0 commit comments