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 27 28 29
|
### jsoncons::read_error
```cpp
#include <jsoncons/ser_util.hpp>
```
class read_error;
```
#### Accessors
std::error_code code() const noexcept;
Returns an error code.
const std::string& message_arg() const noexcept
Returns an explanatory string
std::size_t line() const noexcept
Returns the line number to the end of the text where the exception occurred.
Line numbers start at 1.
std::size_t column() const noexcept
Returns the column number to the end of the text where the exception occurred.
Column numbers start at 1.
std::string message() const;
Returns an error message
|