diff --git a/power_grid_model_c/power_grid_model/include/power_grid_model/common/exception.hpp b/power_grid_model_c/power_grid_model/include/power_grid_model/common/exception.hpp index e0db9e154..14218306b 100644 --- a/power_grid_model_c/power_grid_model/include/power_grid_model/common/exception.hpp +++ b/power_grid_model_c/power_grid_model/include/power_grid_model/common/exception.hpp @@ -135,7 +135,7 @@ class IterationDiverge : public PowerGridError { class MaxIterationReached : public IterationDiverge { public: MaxIterationReached(std::string const& msg = "") { - append_msg("Maximum iterations reached, no solution. " + msg + "\n"); + append_msg("Maximum number of iterations reached" + msg + "\n"); } };