/** * \file * \author Egor Tensin * \date 2015 * \copyright This file is licensed under the terms of the MIT License. * See LICENSE.txt for details. */ #include "libservice/all.hpp" #include #include #include #include int main() { try { throw std::system_error( ERROR_FILE_NOT_FOUND, libservice::WindowsErrorCategory::get(), LIBSERVICE_ERROR_PREFIX); } catch (const std::exception& e) { std::cerr << e.what() << "\n"; return 1; } return 0; }