diff options
Diffstat (limited to '')
-rw-r--r-- | utils/stop_service.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/stop_service.cpp b/utils/stop_service.cpp index 6f4a700..bd4f8ce 100644 --- a/utils/stop_service.cpp +++ b/utils/stop_service.cpp @@ -8,8 +8,8 @@ #include "libservice/interface.hpp" +#include <exception> #include <iostream> -#include <system_error> int main(int argc, char* argv[]) { @@ -23,7 +23,7 @@ int main(int argc, char* argv[]) { libservice::Service::open(libservice::ServiceManager::open(), argv[1]).stop(); } - catch (const std::system_error& e) + catch (const std::exception& e) { std::cerr << e.what() << "\n"; return 1; |