diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/RemoteControl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/RemoteControl.cpp b/lib/RemoteControl.cpp index 6e9af20..16359ad 100644 --- a/lib/RemoteControl.cpp +++ b/lib/RemoteControl.cpp @@ -193,7 +193,7 @@ RemoteControllable* RemoteControllers::get_controllable_(const std::string& name [&](RemoteControllable* r) { return r->get_rc_name() == name; }); if (rc == controllables.end()) { - throw ParameterError("Module name unknown"); + throw ParameterError(string{"Module name '"} + name + "' unknown"); } else { return *rc; |