From 10e1921d30a66db85d8707e554e0eeb5efbb8b00 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sun, 10 May 2015 23:00:08 +0300 Subject: add service mgmt lib & utils --- utils/libservice/test/windows_error.cpp | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 utils/libservice/test/windows_error.cpp (limited to 'utils/libservice/test/windows_error.cpp') diff --git a/utils/libservice/test/windows_error.cpp b/utils/libservice/test/windows_error.cpp new file mode 100644 index 0000000..f165681 --- /dev/null +++ b/utils/libservice/test/windows_error.cpp @@ -0,0 +1,27 @@ +/** + * \author Egor Tensin + * \date 2015 + * \copyright This file is licensed under the terms of the MIT License. + * See LICENSE.txt for details. + */ + +#include "libservice/interface.hpp" + +#include + +#include +#include + +int main() +{ + try + { + throw std::system_error(ERROR_FILE_NOT_FOUND, libservice::WinErrorCategory::get(), LIBSERVICE_ERROR_PREFIX); + } + catch (const std::system_error& e) + { + std::cerr << e.what() << "\n"; + return -1; + } + return 0; +} -- cgit v1.2.3