|
|
azure-core
|
An error while sending the HTTP request with the transport adapter.
#include <http.hpp>
Public Member Functions | |
| TransportException (std::string const &what) | |
Constructs TransportException with a message string. | |
Public Member Functions inherited from Azure::Core::RequestFailedException | |
| RequestFailedException (std::string const &what) | |
Constructs a new RequestFailedException with a message string. | |
| RequestFailedException (std::unique_ptr< Azure::Core::Http::RawResponse > &rawResponse) | |
Constructs a new RequestFailedException object with an HTTP raw response. | |
| RequestFailedException (const RequestFailedException &other) | |
Constructs a new RequestFailedException by copying from an existing one. | |
| RequestFailedException (RequestFailedException &&other)=default | |
Constructs a new RequestFailedException by moving in an existing one. | |
| RequestFailedException & | operator= (const RequestFailedException &)=delete |
An instance of RequestFailedException class cannot be assigned. | |
| RequestFailedException & | operator= (RequestFailedException &&)=delete |
An instance of RequestFailedException class cannot be moved into another instance after creation. | |
| ~RequestFailedException () override=default | |
Destructs RequestFailedException. | |
Additional Inherited Members | |
Public Attributes inherited from Azure::Core::RequestFailedException | |
| std::unique_ptr< Azure::Core::Http::RawResponse > | RawResponse |
| The entire HTTP raw response. | |
| Azure::Core::Http::HttpStatusCode | StatusCode = Azure::Core::Http::HttpStatusCode::None |
| The HTTP response code. | |
| std::string | ReasonPhrase |
| The HTTP reason phrase from the response. | |
| std::string | ClientRequestId |
The client request header (x-ms-client-request-id) from the HTTP response. | |
| std::string | RequestId |
The request ID header (x-ms-request-id) from the HTTP response. | |
| std::string | ErrorCode |
| The error code from service returned in the HTTP response. | |
| std::string | Message |
| The error message from the service returned in the HTTP response. | |
|
inlineexplicit |
| what | The explanatory string. |