aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/error.hpp
blob: b8ba468cd3373c24294715b3bdb7f27bc4ad6219 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 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 <exception>
#include <system_error>

typedef std::system_error Error;

namespace error
{
    Error make(const char* function_name);

    void raise(const char* function_name);

    void report(const std::exception&);

    int get_code(const Error&);
}