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
14namespace skyway {
15namespace global {
16
18struct 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で発生したエラーを示す構造体
Definition error.hpp:18