diff options
Diffstat (limited to 'src/TII.cpp')
-rw-r--r-- | src/TII.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/TII.cpp b/src/TII.cpp index a30d7f6..af64c9f 100644 --- a/src/TII.cpp +++ b/src/TII.cpp @@ -350,10 +350,10 @@ void TII::set_parameter(const std::string& parameter, const std::string& value) ss >> m_conf.old_variant; } else { - stringstream ss; - ss << "Parameter '" << parameter << + stringstream ss_err; + ss_err << "Parameter '" << parameter << "' is not exported by controllable " << get_rc_name(); - throw ParameterError(ss.str()); + throw ParameterError(ss_err.str()); } } |