| 4440 | : exception(id_, what_arg), byte(byte_) {} |
| 4441 | |
| 4442 | static std::string position_string(const position_t& pos) |
| 4443 | { |
| 4444 | return concat(" at line ", std::to_string(pos.lines_read + 1), |
| 4445 | ", column ", std::to_string(pos.chars_read_current_line)); |
| 4446 | } |
| 4447 | }; |
| 4448 | |
| 4449 | /// @brief exception indicating errors with iterators |