| 4362 | : exception(id_, what_arg), byte(byte_) {} |
| 4363 | |
| 4364 | static std::string position_string(const position_t& pos) |
| 4365 | { |
| 4366 | return concat(" at line ", std::to_string(pos.lines_read + 1), |
| 4367 | ", column ", std::to_string(pos.chars_read_current_line)); |
| 4368 | } |
| 4369 | }; |
| 4370 | |
| 4371 | /// @brief exception indicating errors with iterators |