MongoDB C++ Driver 4.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
operation_exception.hpp
Go to the documentation of this file.
1// Copyright 2009-present MongoDB, Inc.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15#pragma once
16
17#include <string>
18
20
23
25
27
29
30namespace mongocxx {
31namespace v_noabi {
32
33BSONCXX_PRIVATE_WARNINGS_PUSH();
34BSONCXX_PRIVATE_WARNINGS_DISABLE(MSVC(4251));
35BSONCXX_PRIVATE_WARNINGS_DISABLE(MSVC(4275));
36
43class operation_exception : public exception {
44 public:
45 ~operation_exception() override;
46
47 operation_exception(operation_exception&&) = default;
48 operation_exception& operator=(operation_exception&&) = default;
49 operation_exception(operation_exception const&) = default;
50 operation_exception& operator=(operation_exception const&) = default;
51
52 using exception::exception;
53
65 std::error_code ec,
67 std::string what_arg = "");
68
79
89
90 private:
92};
93
94BSONCXX_PRIVATE_WARNINGS_POP();
95
96} // namespace v_noabi
97} // namespace mongocxx
98
100
102
The bsoncxx v_noabi macro guard postlude header.
The bsoncxx v_noabi macro guard prelude header.
A polyfill for std::optional<T>.
Definition optional.hpp:800
A polyfill for std::string_view.
Definition string_view.hpp:411
A read-only BSON document that owns its underlying buffer.
Definition value.hpp:39
operation_exception(std::error_code ec, bsoncxx::v_noabi::document::value &&raw_server_error, std::string what_arg="")
Constructs a new operation exception.
bool has_error_label(bsoncxx::v_noabi::stdx::string_view label) const
Checks for the specified label in a operation exception.
bsoncxx::v_noabi::stdx::optional< bsoncxx::v_noabi::document::value > & raw_server_error()
The optional raw bson error document from the server.
bsoncxx::v_noabi::stdx::optional< bsoncxx::v_noabi::document::value > const & raw_server_error() const
The optional raw bson error document from the server.
Provides bsoncxx::v_noabi::document::value.
The mongocxx v_noabi macro guard postlude header.
The mongocxx v_noabi macro guard prelude header.
Provides mongocxx::v_noabi::exception.
Declares entities whose ABI stability is NOT guaranteed.
The top-level namespace within which all mongocxx library entities are declared.
Declares mongocxx::v_noabi::operation_exception.
Provides std::optional-related polyfills for library API usage.