MongoDB C++ Driver
mongocxx-3.6.2
|
17 #include <bsoncxx/document/value.hpp>
18 #include <bsoncxx/stdx/optional.hpp>
19 #include <mongocxx/exception/exception.hpp>
20 #include <mongocxx/stdx.hpp>
22 #include <mongocxx/config/prelude.hpp>
25 MONGOCXX_INLINE_NAMESPACE_BEGIN
35 using exception::exception;
49 std::string what_arg =
"");
75 stdx::optional<bsoncxx::document::value> _raw_server_error;
78 MONGOCXX_INLINE_NAMESPACE_END
81 #include <mongocxx/config/postlude.hpp>
stdx::optional< bsoncxx::document::value > & raw_server_error()
The optional raw bson error document from the server.
const stdx::optional< bsoncxx::document::value > & raw_server_error() const
The optional raw bson error document from the server.
Top level namespace for the MongoDB C++ driver.
Definition: bulk_write.hpp:24
operation_exception(std::error_code ec, bsoncxx::document::value &&raw_server_error, std::string what_arg="")
Constructs a new operation exception.
Class representing an exception received from a MongoDB server.
Definition: operation_exception.hpp:33
A read-only BSON document that owns its underlying buffer.
Definition: value.hpp:33
bool has_error_label(stdx::string_view label) const
Checks for the specified label in a operation exception.
A class to be used as the base class for all mongocxx exceptions.
Definition: exception.hpp:28