command/all: catch all exceptions

This commit is contained in:
Max Kellermann 2019-08-20 20:23:54 +02:00
parent 44444e1b89
commit 21fa44c0d5
1 changed files with 1 additions and 1 deletions

View File

@ -415,7 +415,7 @@ try {
: CommandResult::ERROR;
return ret;
} catch (const std::exception &e) {
} catch (...) {
Response r(client, num);
PrintError(r, std::current_exception());
return CommandResult::ERROR;