|
Ditto 4.8.2
|
exception indicating a parse error More...
#include <json.hpp>
Static Public Member Functions | |
| template<typename BasicJsonContext , enable_if_t< is_basic_json_context< BasicJsonContext >::value, int > = 0> | |
| static parse_error | create (int id_, const position_t &pos, const std::string &what_arg, BasicJsonContext context) |
| create a parse error exception | |
| template<typename BasicJsonContext , enable_if_t< is_basic_json_context< BasicJsonContext >::value, int > = 0> | |
| static parse_error | create (int id_, std::size_t byte_, const std::string &what_arg, BasicJsonContext context) |
Public Attributes | |
| const std::size_t | byte |
| byte index of the parse error | |
Public Attributes inherited from detail::exception | |
| const int | id |
| the id of the exception | |
Additional Inherited Members | |
Public Member Functions inherited from detail::exception | |
| const char * | what () const noexcept override |
| returns the explanatory string | |
Protected Member Functions inherited from detail::exception | |
| exception (int id_, const char *what_arg) | |
Static Protected Member Functions inherited from detail::exception | |
| static std::string | name (const std::string &ename, int id_) |
| static std::string | diagnostics (std::nullptr_t) |
| template<typename BasicJsonType > | |
| static std::string | diagnostics (const BasicJsonType *leaf_element) |
exception indicating a parse error
|
inlinestatic |
create a parse error exception
| [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 |
| const std::size_t detail::parse_error::byte |
byte index of the parse error
The byte index of the last read character in the input file.