aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/um/service/include/libservice/windows_error.hpp
blob: f7ac90ef3fa024d4e5b67d905442ea68cac1e022 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
// This file is part of the "Windows 7 drivers" project.
// For details, see https://github.com/egor-tensin/windows7-drivers.
// Distributed under the MIT License.

#pragma once

#include "common.hpp"
#include "singleton.hpp"

#include <string>
#include <system_error>

namespace libservice
{
    class WindowsErrorCategory
        : public std::error_category
        , public Singleton<WindowsErrorCategory>
    {
    public:
        const char* name() const LIBSERVICE_NOEXCEPT { return "Windows"; }

        std::string message(int) const;

    private:
        friend class Singleton<WindowsErrorCategory>;
    };
}

#define LIBSERVICE_ERROR_PREFIX \
    "Error in function '" LIBSERVICE_FUNCTION_NAME "' at file '" LIBSERVICE_FILE_PATH "', line " LIBSERVICE_LINE_NUMBER_STRING