aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/utils/libservice/test/windows_error.cpp
blob: 1f0b1ee7c602a74371f3cc85b70ed4150b876ae7 (plain) (tree)
1
2
3
4
5
6
7
8
9
   
        





                                                                       
                             


                    
                    
                   






                                                                                                                    
                                   





                                      
/**
 * \file
 * \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/all.hpp"

#include <Windows.h>

#include <exception>
#include <iostream>

int main()
{
    try
    {
        throw std::system_error(ERROR_FILE_NOT_FOUND, libservice::WinErrorCategory::get(), LIBSERVICE_ERROR_PREFIX);
    }
    catch (const std::exception& e)
    {
        std::cerr << e.what() << "\n";
        return -1;
    }
    return 0;
}