| 2817 | : exception(id_, what_arg), byte(byte_) {} |
| 2818 | |
| 2819 | static std::string position_string(const position_t& pos) |
| 2820 | { |
| 2821 | return " at line " + std::to_string(pos.lines_read + 1) + |
| 2822 | ", column " + std::to_string(pos.chars_read_current_line); |
| 2823 | } |
| 2824 | }; |
| 2825 | |
| 2826 | /*! |
nothing calls this directly
no outgoing calls
no test coverage detected