1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
### jsoncons::jsonpointer::jsonpointer_errc
```cpp
#include <jsoncons_ext/jsonpointer/jsonpointer_error.hpp>
```
<br>
The constant integer values scoped by `jsonpointer_errc` define the values for jsonpointer error codes.
### Member constants
constant |Description
------------------------------------|------------------------------
`expected_slash` |Expected /
`index_exceeds_array_size` |Index exceeds array size
`expected_0_or_1` |Expected '0' or '1' after escape character '~'
`invalid_index` |Invalid array index
`name_not_found` |Name not found
`key_already_exists` |Key already exists
`expected_object_or_array` |Expected object or array
`end_of_input` |Unexpected end of input
|