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









                                
                                         

                                       





                                                                             











                                                 
#pragma once

#include <Windows.h>

#include <system_error>

typedef std::system_error Error;

namespace error
{
    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);
    }

    void report(const Error& e)
    {
        MessageBoxA(NULL, e.what(), NULL, MB_OK);
    }

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