Skip to content
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions include/appfwk/detail/DAQModule.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ make_module(std::string const& plugin_name, std::string const& instance_name)
try {
mod_ptr = bpf.makePlugin<std::shared_ptr<DAQModule>>(plugin_name, instance_name);
} catch (const cet::exception& cexpt) {
ers::error(DAQModuleCreationFailed(ERS_HERE, plugin_name, instance_name, cexpt));
throw DAQModuleCreationFailed(ERS_HERE, plugin_name, instance_name, cexpt);
}
return mod_ptr;
Expand Down
Loading