diff options
Diffstat (limited to 'src/crsm.cpp')
| -rw-r--r-- | src/crsm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crsm.cpp b/src/crsm.cpp index f85ca52..614a085 100644 --- a/src/crsm.cpp +++ b/src/crsm.cpp @@ -2225,7 +2225,7 @@ CMD_FUNCTION_IMPL(getConfigValue) { respond(client, Config.getConfigValueLine(args)); } - catch(CRSMConfigException) + catch(ConfigException) { respond(client, "Es existiert kein Wert mit dem Namen \"" + args + "\"\n"); } @@ -2238,7 +2238,7 @@ CMD_FUNCTION_IMPL(setConfigValue) applyConfig(); respond(client, "Wert wurde erfolgreich übernommen.\n"); } - catch(CRSMConfigException e) + catch(ConfigException e) { respond(client, QString("Fehler beim Setzen: ") + e.what() + "\n"); } |
