| 71 | ? " for file " + file_path |
| 72 | : "")) { } |
| 73 | virtual const char* what() const noexcept override { |
| 74 | // Include file path in native C++ exception output (stderr / terminate). |
| 75 | return full_message.c_str(); |
| 76 | } |
| 77 | virtual std::string py_message() const override { |
| 78 | // Keep Python exception output consistent with what(). |
| 79 | return full_message; |
nothing calls this directly
no outgoing calls
no test coverage detected