MongoDB C++ Driver  mongocxx-3.7.0
All Classes Namespaces Functions Typedefs Enumerations Enumerator Friends Pages
error_code.hpp
1 // Copyright 2015-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 <system_error>
18 
19 #include <mongocxx/config/prelude.hpp>
20 
21 namespace mongocxx {
22 MONGOCXX_INLINE_NAMESPACE_BEGIN
23 
27 enum class error_code : std::int32_t {
30 
33 
36 
39 
42 
45 
48 
51 
54 
57 
60 
63 
66 
70 
74 
77 
80 
83 
86 
89 
92 
93  // A resource (server API handle, etc.) could not be created:
94  k_create_resource_fail,
95 
96  // Add new constant string message to error_code.cpp as well!
97 };
98 
104 MONGOCXX_API const std::error_category& MONGOCXX_CALL error_category();
105 
113 MONGOCXX_INLINE std::error_code make_error_code(error_code error) {
114  return {static_cast<int>(error), error_category()};
115 }
116 
117 MONGOCXX_INLINE_NAMESPACE_END
118 } // namespace mongocxx
119 
120 #include <mongocxx/config/postlude.hpp>
121 
122 namespace std {
123 // Specialize is_error_code_enum so we get simpler std::error_code construction
124 template <>
125 struct is_error_code_enum<mongocxx::error_code> : public true_type {};
126 } // namespace std
mongocxx::error_code::k_invalid_database_object
@ k_invalid_database_object
A default-constructed or moved-from mongocxx::database object has been used.
mongocxx::error_category
const std::error_category & error_category()
Get the error_category for mongocxx library exceptions.
mongocxx
Top level namespace for the MongoDB C++ driver.
Definition: bulk_write.hpp:24
mongocxx::error_code::k_gridfs_stream_not_open
@ k_gridfs_stream_not_open
A mongocxx::gridfs::uploader object was not open for writing, or a mongocxx::gridfs::downloader objec...
mongocxx::error_code::k_invalid_gridfs_bucket_object
@ k_invalid_gridfs_bucket_object
A default-constructed or moved-from mongocxx::gridfs::bucket object has been used.
mongocxx::error_code::k_gridfs_file_not_found
@ k_gridfs_file_not_found
The requested GridFS file was not found.
mongocxx::error_code::k_invalid_uri
@ k_invalid_uri
An invalid MongoDB URI was provided.
mongocxx::error_code::k_invalid_gridfs_downloader_object
@ k_invalid_gridfs_downloader_object
A default-constructed or moved-from mongocxx::gridfs::downloader object has been used.
mongocxx::error_code::k_gridfs_file_corrupted
@ k_gridfs_file_corrupted
A GridFS file being operated on was discovered to be corrupted.
mongocxx::error_code::k_invalid_transaction_options_object
@ k_invalid_transaction_options_object
A moved-from mongocxx::options::transaction object has been used.
mongocxx::error_code::k_instance_destroyed
@ k_instance_destroyed
The mongocxx::instance has been destroyed.
mongocxx::error_code::k_cannot_create_session
@ k_cannot_create_session
mongocxx::client.create_session failed to create a mongocxx::client_session.
mongocxx::error_code::k_invalid_collection_object
@ k_invalid_collection_object
A default-constructed or moved-from mongocxx::collection object has been used.
mongocxx::error_code::k_unknown_read_concern
@ k_unknown_read_concern
An unknown read concern level was set.
mongocxx::error_code::k_unknown_write_concern
@ k_unknown_write_concern
An unknown write concern level was set.
mongocxx::error_code::k_invalid_client_object
@ k_invalid_client_object
A default-constructed or moved-from mongocxx::client object has been used.
mongocxx::error_code::k_invalid_gridfs_uploader_object
@ k_invalid_gridfs_uploader_object
A default-constructed or moved-from mongocxx::gridfs::uploader object has been used.
mongocxx::error_code::k_invalid_parameter
@ k_invalid_parameter
An invalid or out-of-bounds parameter was provided.
mongocxx::error_code
error_code
Enum representing the various error types that can occur during driver usage.
Definition: error_code.hpp:27
mongocxx::make_error_code
std::error_code make_error_code(error_code error)
Translate a mongocxx::error_code into a std::error_code.
Definition: error_code.hpp:113
mongocxx::error_code::k_invalid_session
@ k_invalid_session
A failure attempting to pass a mongocxx::client_session to a method.
mongocxx::error_code::k_gridfs_upload_requires_too_many_chunks
@ k_gridfs_upload_requires_too_many_chunks
A mongocxx::gridfs::uploader object has exceeded the maximum number of allowable GridFS chunks when a...
mongocxx::error_code::k_cannot_recreate_instance
@ k_cannot_recreate_instance
More than one mongocxx::instance has been created.
mongocxx::error_code::k_ssl_not_supported
@ k_ssl_not_supported
An SSL operation was used without SSL support being built.
mongocxx::error_code::k_server_response_malformed
@ k_server_response_malformed
The server returned a malformed response.