aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/utils/libservice/test/windows_error.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'utils/libservice/test/windows_error.cpp')
-rw-r--r--utils/libservice/test/windows_error.cpp27
1 files changed, 27 insertions, 0 deletions
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 <Egor.Tensin@gmail.com>
+ * \date 2015
+ * \copyright This file is licensed under the terms of the MIT License.
+ * See LICENSE.txt for details.
+ */
+
+#include "libservice/interface.hpp"
+
+#include <Windows.h>
+
+#include <iostream>
+#include <system_error>
+
+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;
+}