Loading [MathJax]/extensions/tex2jax.js
azure-storage-common
All Classes Functions Variables Pages
storage_exception.hpp
1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4#pragma once
5
6#include <azure/core/exception.hpp>
7#include <azure/core/http/http.hpp>
8
9#include <map>
10#include <memory>
11#include <stdexcept>
12#include <string>
13
14namespace Azure { namespace Storage {
15
19 struct StorageException final : public Azure::Core::RequestFailedException
20 {
26 explicit StorageException(const std::string& what) : RequestFailedException(what) {}
27
31 std::map<std::string, std::string> AdditionalInformation;
32
40 std::unique_ptr<Azure::Core::Http::RawResponse> response);
41 };
42}} // namespace Azure::Storage
An exception thrown when storage service request fails.
Definition storage_exception.hpp:20
std::map< std::string, std::string > AdditionalInformation
Definition storage_exception.hpp:31
static StorageException CreateFromResponse(std::unique_ptr< Azure::Core::Http::RawResponse > response)
Constructs a StorageException from a failed storage service response.
StorageException(const std::string &what)
Constructs a StorageException with a message.
Definition storage_exception.hpp:26