Sendbird Chat SDK for Unreal
SBDError.h
1// Copyright (c) 2021 Sendbird, Inc. All rights reserved.
2
3#ifndef SENDBIRD_SBDERROR_H_
4#define SENDBIRD_SBDERROR_H_
5
6#include <string>
7
8class FSBDError;
9
13class SBDError final {
14public:
18 std::wstring message;
19
23 int64_t code;
24
25private:
26 SBDError(const std::string& msg, int64_t c);
27
28 friend FSBDError;
29};
30
31#endif /* SENDBIRD_SBDERROR_H_ */
Definition: SBDError.h:13
std::wstring message
Definition: SBDError.h:18
int64_t code
Definition: SBDError.h:23