SkyWay for Linux
error.hpp
1
//
2
// error.hpp
3
// skyway
4
//
5
// Created by sandabu on 2022/07/25.
6
// Copyright © 2022 NTT Communications. All rights reserved.
7
//
8
9
#ifndef SKYWAY_GLOBAL_ERROR_HPP_
10
#define SKYWAY_GLOBAL_ERROR_HPP_
11
12
#include <string>
13
14
namespace
skyway {
15
namespace
global {
16
18
struct
Error
{
19
// TODO: Impl code or type?
20
std::string message;
21
};
22
23
}
// namespace global
24
}
// namespace skyway
25
26
#endif
/* SKYWAY_GLOBAL_ERROR_HPP_ */
skyway::global::Error
SkyWayで発生したエラーを示す構造体
Definition:
error.hpp:18
include
skyway
global
error.hpp
構築:
1.9.1