| 8730 | #endif |
| 8731 | |
| 8732 | void throw_error(const char* message) |
| 8733 | { |
| 8734 | _result->error = message; |
| 8735 | _result->offset = _lexer.current_pos() - _query; |
| 8736 | |
| 8737 | #ifdef PUGIXML_NO_EXCEPTIONS |
| 8738 | longjmp(_error_handler, 1); |
| 8739 | #else |
| 8740 | throw xpath_exception(*_result); |
| 8741 | #endif |
| 8742 | } |
| 8743 | |
| 8744 | void throw_error_oom() |
| 8745 | { |
nothing calls this directly
no test coverage detected