Skip to content
Snippets Groups Projects
Commit 472d1d34 authored by Gemma Guest's avatar Gemma Guest
Browse files

Change to catch more specific exception

Re #22933
parent 5b311639
No related branches found
No related tags found
No related merge requests found
......@@ -277,7 +277,7 @@ std::map<std::string, std::string> ReflectometrySumInQ::validateInputs() {
try {
std::tie(inWS, indices) =
getWorkspaceAndIndices<API::MatrixWorkspace>(Prop::INPUT_WS);
} catch (...) {
} catch (std::runtime_error &) {
return issues;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment