| 4511 | : exception(id_, what_arg), byte(byte_) {} |
| 4512 | |
| 4513 | static std::string position_string(const position_t& pos) |
| 4514 | { |
| 4515 | return concat(" at line ", std::to_string(pos.lines_read + 1), |
| 4516 | ", column ", std::to_string(pos.chars_read_current_line)); |
| 4517 | } |
| 4518 | }; |
| 4519 | |
| 4520 | /// @brief exception indicating errors with iterators |