aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/src/error.hpp
blob: 04ec8c925ca9c1a2b1f6bd64bd7f80518edbd0af (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                         

                                                                   

                                     

            
                    
 
                    





                                




                                                                             
 



                                                
 



                                                 
 



                                       
 
// Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com>
// This file is part of the "Privilege check" project.
// For details, see https://github.com/egor-tensin/privilege-check.
// Distributed under the MIT License.

#pragma once

#include <windows.h>

#include <exception>
#include <system_error>

typedef std::system_error Error;

namespace error
{
    inline Error make(const char* function_name)
    {
        const auto ec = GetLastError();
        return {static_cast<int>(ec), std::system_category(), function_name};
    }

    inline void raise(const char* function_name)
    {
        throw make(function_name);
    }

    inline void report(const std::exception& e)
    {
        MessageBoxA(NULL, e.what(), NULL, MB_OK);
    }

    inline int get_code(const Error& e)
    {
        return e.code().value();
    }
}