Commit f7bef8b0 by Maarten L. Hekkelman

update dictionary

do not throw from Category::isValid()
parent 9da8608f
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -2119,7 +2119,15 @@ bool Category::isValid()
if (vi->mColumnIndex == cix)
{
seen = true;
(*iv)(vi->mText);
try
{
(*iv)(vi->mText);
}
catch(const std::exception& e)
{
mValidator->reportError("Error validating " + mColumns[cix].mName + ": " + e.what(), false);
continue;
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment