Skip to content
Snippets Groups Projects
Commit ba52be5e authored by Christoph Kampmeyer's avatar Christoph Kampmeyer
Browse files

findTag: Improve error msg for oneUp-modifiers

Print path to the nonvirtual module if oneLevelUp or oneUpAndHide are
detected directly below the applicaiton root.
parent 058630bb
No related branches found
No related tags found
No related merge requests found
......@@ -229,7 +229,8 @@ namespace ChimeraTK {
}
else {
throw logic_error(std::string("Module ") + virtualParent.getName() +
": cannot have hierarchy modifier 'oneLevelUp' or oneUpAndHide in root of the application.");
": cannot have hierarchy modifier 'oneLevelUp' or 'oneUpAndHide' in root of the application." +
"\nNon-virtual path to the offending module: " + getQualifiedName());
}
}
else {
......
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