Hazelcast C++ Client
Hazelcast C++ Client Library
Loading...
Searching...
No Matches
hazelcast::client::exception::retryable_hazelcast Class Reference
Inheritance diagram for hazelcast::client::exception::retryable_hazelcast:

Public Member Functions

 retryable_hazelcast (std::string error_name, int32_t error_code, std::string source, std::string message, std::string details, std::exception_ptr cause, bool runtime, bool retryable)
 retryable_hazelcast (std::string source="", std::string message="", std::string details="", std::exception_ptr cause=nullptr)

Detailed Description

Definition at line 282 of file protocol_exceptions.h.

Constructor & Destructor Documentation

◆ retryable_hazelcast() [1/2]

hazelcast::client::exception::retryable_hazelcast::retryable_hazelcast ( std::string error_name,
int32_t error_code,
std::string source,
std::string message,
std::string details,
std::exception_ptr cause,
bool runtime,
bool retryable )

Definition at line 1295 of file client_impl.cpp.

1303 : hazelcast_(std::move(error_name),
1304 error_code,
1305 std::move(source),
1306 std::move(message),
1307 std::move(details),
1308 std::move(cause),
1309 runtime,
1310 retryable)
1311{}

◆ retryable_hazelcast() [2/2]

hazelcast::client::exception::retryable_hazelcast::retryable_hazelcast ( std::string source = "",
std::string message = "",
std::string details = "",
std::exception_ptr cause = nullptr )
explicit

Definition at line 1281 of file client_impl.cpp.

1285 : retryable_hazelcast("retryable_hazelcast",
1286 protocol::RETRYABLE_HAZELCAST,
1287 std::move(source),
1288 std::move(message),
1289 std::move(details),
1290 std::move(cause),
1291 true,
1292 true)
1293{}

The documentation for this class was generated from the following files: