MongoDB C++ Driver 4.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
error_code.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 <cstdint>
18#include <system_error>
19
21
23
24namespace mongocxx {
25namespace v_noabi {
26
118
124MONGOCXX_ABI_EXPORT_CDECL(std::error_category const&) error_category();
125
133inline std::error_code make_error_code(error_code error) {
134 return {static_cast<int>(error), error_category()};
135}
136
137} // namespace v_noabi
138} // namespace mongocxx
139
140namespace mongocxx {
141
144
145} // namespace mongocxx
146
148
149namespace std {
150
151// @cond DOXYGEN_DISABLE
152template <>
153struct is_error_code_enum<::mongocxx::v_noabi::error_code> : std::true_type {};
154// @endcond
155
156} // namespace std
157
#define MONGOCXX_ABI_EXPORT_CDECL(...)
Equivalent to MONGOCXX_ABI_EXPORT with MONGOCXX_ABI_CDECL.
Definition export.hpp:52
The mongocxx v_noabi macro guard postlude header.
The mongocxx v_noabi macro guard prelude header.
Declares mongocxx::v_noabi::error_code.
Declares entities whose ABI stability is NOT guaranteed.
std::error_code make_error_code(error_code error)
Translate a mongocxx::v_noabi::error_code into a std::error_code.
Definition error_code.hpp:133
error_code
Errors which may occur during mongocxx library usage.
Definition error_code.hpp:32
@ k_ssl_not_supported
An SSL operation was used without SSL support being built.
Definition error_code.hpp:49
@ k_invalid_collection_object
A default-constructed or moved-from mongocxx::v_noabi::collection object has been used.
Definition error_code.hpp:40
@ k_unknown_write_concern
An unknown write concern level was set.
Definition error_code.hpp:55
@ k_invalid_transaction_options_object
A moved-from mongocxx::v_noabi::options::transaction object has been used.
Definition error_code.hpp:100
@ k_gridfs_file_not_found
The requested GridFS file was not found.
Definition error_code.hpp:84
@ k_invalid_search_index_view
A default-constructed or moved-from mongocxx::v_noabi::search_index_view object has been used.
Definition error_code.hpp:111
@ k_invalid_client_object
A default-constructed or moved-from mongocxx::v_noabi::client object has been used.
Definition error_code.hpp:37
@ k_gridfs_file_corrupted
A GridFS file being operated on was discovered to be corrupted.
Definition error_code.hpp:87
@ k_server_response_malformed
The server returned a malformed response.
Definition error_code.hpp:58
@ k_cannot_recreate_instance
More than one mongocxx::v_noabi::instance has been created.
Definition error_code.hpp:34
@ k_instance_destroyed
The mongocxx::v_noabi::instance has been destroyed.
Definition error_code.hpp:90
@ k_invalid_gridfs_uploader_object
A default-constructed or moved-from mongocxx::v_noabi::gridfs::uploader object has been used.
Definition error_code.hpp:68
@ k_invalid_search_index_model
A default-constructed or moved-from mongocxx::v_noabi::search_index_model object has been used.
Definition error_code.hpp:107
@ k_invalid_uri
An invalid MongoDB URI was provided.
Definition error_code.hpp:61
@ k_gridfs_stream_not_open
A mongocxx::v_noabi::gridfs::uploader object was not open for writing, or a mongocxx::v_noabi::gridfs...
Definition error_code.hpp:76
@ k_invalid_session
A failure attempting to pass a mongocxx::v_noabi::client_session to a method.
Definition error_code.hpp:97
@ k_invalid_gridfs_bucket_object
A default-constructed or moved-from mongocxx::v_noabi::gridfs::bucket object has been used.
Definition error_code.hpp:64
@ k_invalid_parameter
An invalid or out-of-bounds parameter was provided.
Definition error_code.hpp:46
@ k_create_resource_fail
A resource (server API handle, etc.) could not be created:
Definition error_code.hpp:103
@ k_cannot_create_session
mongocxx::v_noabi::client.create_session failed to create a mongocxx::v_noabi::client_session.
Definition error_code.hpp:94
@ k_invalid_database_object
A default-constructed or moved-from mongocxx::v_noabi::database object has been used.
Definition error_code.hpp:43
@ k_unknown_read_concern
An unknown read concern level was set.
Definition error_code.hpp:52
@ k_pool_wait_queue_timeout
Timed out while waiting for a client to be returned to the pool.
Definition error_code.hpp:114
@ k_invalid_gridfs_downloader_object
A default-constructed or moved-from mongocxx::v_noabi::gridfs::downloader object has been used.
Definition error_code.hpp:72
@ k_gridfs_upload_requires_too_many_chunks
A mongocxx::v_noabi::gridfs::uploader object has exceeded the maximum number of allowable GridFS chun...
Definition error_code.hpp:81
std::error_category const & error_category()
Get the error_category for mongocxx library exceptions.
The top-level namespace within which all mongocxx library entities are declared.