break-pointable
| 98 | |
| 99 | // break-pointable |
| 100 | void throwPluginError(char const* file, char const* function, int32_t line, int32_t status, char const* msg) |
| 101 | { |
| 102 | PluginError error(file, function, line, status, msg); |
| 103 | reportValidationFailure(msg, file, line); |
| 104 | // NOLINTNEXTLINE(misc-throw-by-value-catch-by-reference) |
| 105 | throw error; |
| 106 | } |
| 107 | |
| 108 | void logError(char const* msg, char const* file, char const* fn, int32_t line) |
| 109 | { |
nothing calls this directly
no test coverage detected