catch std::exception on parsing

This commit is contained in:
Alex Fabijanic
2020-01-15 21:55:32 +01:00
parent a2227c3bfd
commit 07c1103bc9

View File

@@ -329,6 +329,11 @@ protected:
logger().log(exc); logger().log(exc);
++errors; ++errors;
} }
catch (std::exception& exc)
{
logger().error(std::string(exc.what()));
++errors;
}
} }
return errors; return errors;
} }