SkyWay Linux SDK
読み取り中…
検索中…
一致する文字列を見つけられません
error.hpp
1//
2// © NTT DOCOMO BUSINESS, Inc. All Rights Reserved.
3//
4
5#ifndef SKYWAY_GLOBAL_ERROR_HPP_
6#define SKYWAY_GLOBAL_ERROR_HPP_
7
8#include <string>
9
10namespace skyway {
11namespace global {
12
14struct Error {
15 // TODO: Impl code or type?
16 std::string message;
17};
18
19} // namespace global
20} // namespace skyway
21
22#endif /* SKYWAY_GLOBAL_ERROR_HPP_ */
SkyWayで発生したエラーを示す構造体
Definition error.hpp:14