C++ Server-Side SDK
LaunchDarkly SDK
Loading...
Searching...
No Matches
common
include
launchdarkly
data_sources
data_source_status_error_kind.hpp
1
#pragma once
2
3
#include <ostream>
4
5
namespace
launchdarkly::common::data_sources {
6
10
enum class
DataSourceStatusErrorKind {
15
kUnknown = 0,
16
20
kNetworkError = 1,
21
26
kErrorResponse = 2,
27
31
kInvalidData = 3,
32
38
kStoreError = 4
39
};
40
41
std::ostream& operator<<(std::ostream& out,
42
DataSourceStatusErrorKind
const
& kind);
43
44
}
// namespace launchdarkly::common::data_sources
Generated by
1.9.8