exception indicating a parse error
More...
#include <json.hpp>
|
template<typename BasicJsonType > |
static parse_error | create (int id_, const position_t &pos, const std::string &what_arg, const BasicJsonType &context) |
| create a parse error exception More...
|
|
template<typename BasicJsonType > |
static parse_error | create (int id_, std::size_t byte_, const std::string &what_arg, const BasicJsonType &context) |
|
|
const std::size_t | byte |
| byte index of the parse error More...
|
|
const int | id |
| the id of the exception More...
|
|
|
| parse_error (int id_, std::size_t byte_, const char *what_arg) |
|
|
const char * | what () const noexcept override |
| returns the explanatory string More...
|
|
| exception (int id_, const char *what_arg) |
|
template<typename BasicJsonType > |
static std::string | diagnostics (const BasicJsonType &leaf_element) |
|
static std::string | name (const std::string &ename, int id_) |
|
exception indicating a parse error
- See also
- https://json.nlohmann.me/api/basic_json/parse_error/
Definition at line 2900 of file json.hpp.
◆ parse_error()
nlohmann::detail::parse_error::parse_error |
( |
int |
id_, |
|
|
std::size_t |
byte_, |
|
|
const char * |
what_arg |
|
) |
| |
|
inlineprivate |
◆ create() [1/2]
template<typename BasicJsonType >
static parse_error nlohmann::detail::parse_error::create |
( |
int |
id_, |
|
|
const position_t & |
pos, |
|
|
const std::string & |
what_arg, |
|
|
const BasicJsonType & |
context |
|
) |
| |
|
inlinestatic |
create a parse error exception
- Parameters
-
[in] | id_ | the id of the exception |
[in] | pos | the position where the error occurred (or with chars_read_total=0 if the position cannot be determined) |
[in] | what_arg | the explanatory string |
- Returns
- parse_error object
Definition at line 2913 of file json.hpp.
◆ create() [2/2]
template<typename BasicJsonType >
static parse_error nlohmann::detail::parse_error::create |
( |
int |
id_, |
|
|
std::size_t |
byte_, |
|
|
const std::string & |
what_arg, |
|
|
const BasicJsonType & |
context |
|
) |
| |
|
inlinestatic |
◆ position_string()
static std::string nlohmann::detail::parse_error::position_string |
( |
const position_t & |
pos | ) |
|
|
inlinestaticprivate |
◆ byte
const std::size_t nlohmann::detail::parse_error::byte |
byte index of the parse error
The byte index of the last read character in the input file.
- Note
- For an input with n bytes, 1 is the index of the first character and n+1 is the index of the terminating null byte or the end of file. This also holds true when reading a byte vector (CBOR or MessagePack).
Definition at line 2938 of file json.hpp.
The documentation for this class was generated from the following file: