MongoDB C++ Driver mongocxx-3.10.1
Loading...
Searching...
No Matches
operation_exception.hpp
1// Copyright 2014 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 <mongocxx/exception/operation_exception-fwd.hpp>
18
19#include <bsoncxx/document/value.hpp>
20#include <bsoncxx/stdx/optional.hpp>
21#include <mongocxx/exception/exception.hpp>
22#include <mongocxx/stdx.hpp>
23
24#include <mongocxx/config/prelude.hpp>
25
26namespace mongocxx {
27namespace v_noabi {
28
36 public:
37 using exception::exception;
38
49 operation_exception(std::error_code ec,
51 std::string what_arg = "");
52
60 const stdx::optional<bsoncxx::v_noabi::document::value>& raw_server_error() const;
61 stdx::optional<bsoncxx::v_noabi::document::value>& raw_server_error();
65
74 bool has_error_label(stdx::string_view label) const;
75
76 private:
77 stdx::optional<bsoncxx::v_noabi::document::value> _raw_server_error;
78};
79
80} // namespace v_noabi
81} // namespace mongocxx
82
83#include <mongocxx/config/postlude.hpp>
A read-only BSON document that owns its underlying buffer.
Definition value.hpp:38
A class to be used as the base class for all mongocxx exceptions.
Definition exception.hpp:30
Class representing an exception received from a MongoDB server.
Definition operation_exception.hpp:35
operation_exception(std::error_code ec, bsoncxx::v_noabi::document::value &&raw_server_error, std::string what_arg="")
Constructs a new operation exception.
stdx::optional< bsoncxx::v_noabi::document::value > & raw_server_error()
The optional raw bson error document from the server.
const stdx::optional< bsoncxx::v_noabi::document::value > & raw_server_error() const
The optional raw bson error document from the server.
bool has_error_label(stdx::string_view label) const
Checks for the specified label in a operation exception.
The top-level namespace for mongocxx library entities.
Definition bulk_write-fwd.hpp:19