18 #include <system_error>
20 #include <bsoncxx/exception/error_code-fwd.hpp>
22 #include <bsoncxx/config/prelude.hpp>
45 #define BSONCXX_ENUM(name, value) k_need_element_type_k_##name,
46 #include <bsoncxx/enums/type.hpp>
58 k_unmatched_key_in_builder,
70 k_failed_converting_bson_to_json,
97 #define BSONCXX_ENUM(name, value) k_cannot_append_##name,
98 #include <bsoncxx/enums/type.hpp>
100 k_cannot_append_utf8 = k_cannot_append_string,
101 k_need_element_type_k_utf8 = k_need_element_type_k_string,
127 using ::bsoncxx::v_noabi::error_category;
128 using ::bsoncxx::v_noabi::make_error_code;
132 #include <bsoncxx/config/postlude.hpp>
138 struct is_error_code_enum<
bsoncxx::v_noabi::error_code> :
public true_type {};
error_code
Enum representing the various error types that can occur while operating on BSON values.
Definition: error_code.hpp:30
@ k_no_array_to_close
An array was closed while no array was open.
@ k_cannot_append_key_in_sub_array
A new key was appended while building a subarray.
@ k_cannot_begin_appending_document
Failed to begin appending a BSON document to a BSON document or array.
@ k_cannot_close_document_in_sub_array
A subdocument was closed while building a subarray.
@ k_need_key
No key was provided when one was needed.
@ k_unset_element
An empty element was accessed.
@ k_json_parse_failure
A JSON document failed to parse.
@ k_internal_error
BSON data could not be processed, but no specific reason was available.
@ k_cannot_perform_array_operation_on_document
An array operation was performed while building a document.
@ k_invalid_bson_type_id
Invalid type.
@ k_cannot_perform_document_operation_on_array
A document operation was performed while building an array.
@ k_cannot_end_appending_array
Failed to complete appending an array to a BSON document or array.
@ k_invalid_decimal128
A Decimal128 string failed to parse.
@ k_no_document_to_close
A document was closed while no document was open.
@ k_cannot_begin_appending_array
Failed to begin appending an array to a BSON document or array.
@ k_invalid_oid
An Object ID string failed to parse.
@ k_cannot_close_array_in_sub_document
A subarray was closed while building a subdocument.
@ k_invalid_binary_subtype
Invalid binary subtype.
@ k_cannot_end_appending_document
Failed to complete appending a BSON document to a BSON document or array.
const std::error_category & error_category()
Get the error_category for exceptions originating from the bsoncxx library.
std::error_code make_error_code(error_code error)
Translate a bsoncxx::v_noabi::error_code into a std::error_code.
Definition: error_code.hpp:118
The top-level namespace for bsoncxx library entities.
Definition: element-fwd.hpp:19