We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae5f97c commit 88e07b1Copy full SHA for 88e07b1
power_grid_model_c/power_grid_model/include/power_grid_model/common/exception.hpp
@@ -204,7 +204,7 @@ class AutomaticTapCalculationError : public PowerGridError {
204
class AutomaticTapInputError : public PowerGridError {
205
public:
206
AutomaticTapInputError(std::string const& msg) {
207
- append_msg("Automatic tap changer has invalid configuration. " + msg); // NOSONAR
+ append_msg(std::format("Automatic tap changer has invalid configuration. {}", msg));
208
}
209
};
210
0 commit comments