| 922 | : exception(id_, what_arg), byte(byte_) {} |
| 923 | |
| 924 | static std::string position_string(const position_t& pos) |
| 925 | { |
| 926 | return " at line " + std::to_string(pos.lines_read + 1) + |
| 927 | ", column " + std::to_string(pos.chars_read_current_line); |
| 928 | } |
| 929 | }; |
| 930 | |
| 931 | /*! |
nothing calls this directly
no test coverage detected