-
Notifications
You must be signed in to change notification settings - Fork 75
/
error-HostEvent.hpp
61 lines (55 loc) · 1.72 KB
/
error-HostEvent.hpp
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#pragma once
#include <sdbusplus/exception.hpp>
#include <cerrno>
namespace sdbusplus::error::org::open_power::host
{
struct Event final : public sdbusplus::exception::generated_exception
{
static constexpr auto errName = "org.open_power.Host.Error.Event";
static constexpr auto errDesc = "A host system event was received";
static constexpr auto errWhat =
"org.open_power.Host.Error.Event: A host system event was received";
const char* name() const noexcept override
{
return errName;
}
const char* description() const noexcept override
{
return errDesc;
}
const char* what() const noexcept override
{
return errWhat;
}
};
struct MaintenanceProcedure final :
public sdbusplus::exception::generated_exception
{
static constexpr auto errName =
"org.open_power.Host.Error.MaintenanceProcedure";
static constexpr auto errDesc =
"A host system event with a procedure callout";
static constexpr auto errWhat =
"org.open_power.Host.Error.MaintenanceProcedure: A host system event with a procedure callout";
const char* name() const noexcept override
{
return errName;
}
const char* description() const noexcept override
{
return errDesc;
}
const char* what() const noexcept override
{
return errWhat;
}
};
} // namespace sdbusplus::error::org::open_power::host
#ifndef SDBUSPP_REMOVE_DEPRECATED_NAMESPACE
namespace sdbusplus::org::open_power::Host::Error
{
using Event = sdbusplus::error::org::open_power::host::Event;
using MaintenanceProcedure =
sdbusplus::error::org::open_power::host::MaintenanceProcedure;
} // namespace sdbusplus::org::open_power::Host::Error
#endif