|
Microsoft Azure Storage Client Library for C++
7.5.0
The Microsoft Azure Storage Client Library for C++ is a library for working with the Azure Storage Services in C++.
|
Represents a Windows Azure Storage exception. More...
Public Member Functions | |
| storage_exception (const std::string &message, bool retryable=true) | |
| Initializes a new instance of the azure::storage::storage_exception class. More... | |
| storage_exception (const std::string &message, std::exception_ptr inner_exception, bool retryable=true) | |
| Initializes a new instance of the azure::storage::storage_exception class. More... | |
| storage_exception (const std::string &message, request_result result, bool retryable=true) | |
| Initializes a new instance of the azure::storage::storage_exception class. More... | |
| storage_exception (const std::string &message, request_result result, std::exception_ptr inner_exception, bool retryable=true) | |
| Initializes a new instance of the azure::storage::storage_exception class. More... | |
| const request_result & | result () const |
| Gets the request result. More... | |
| bool | retryable () const |
| Indicates whether the request is retryable. More... | |
| std::exception_ptr | inner_exception () const |
| Gets the inner exception object that is the cause for the current azure::storage::storage_exception. More... | |
Represents a Windows Azure Storage exception.
|
inline |
Initializes a new instance of the azure::storage::storage_exception class.
| message | The error message. |
| retryable | Indicates whether the request is retryable. |
|
inline |
Initializes a new instance of the azure::storage::storage_exception class.
| message | The error message. |
| inner_exception | A std::exception_ptr object containing the inner exception. |
| retryable | Indicates whether the request is retryable. |
|
inline |
Initializes a new instance of the azure::storage::storage_exception class.
| message | The error message. |
| result | The request result. |
| retryable | Indicates whether the request is retryable. |
|
inline |
Initializes a new instance of the azure::storage::storage_exception class.
| message | The error message. |
| result | The request result. |
| inner_exception | A std::exception_ptr object containing the inner exception. |
| retryable | Indicates whether the request is retryable. |
|
inline |
Gets the inner exception object that is the cause for the current azure::storage::storage_exception.
|
inline |
Gets the request result.
|
inline |
Indicates whether the request is retryable.
true if the request is retryable.
1.8.15