| 162 | } |
| 163 | |
| 164 | [[noreturn]] void ThrowGCodeException(const char *_ecv_array errMsg) THROWS(GCodeException) |
| 165 | { |
| 166 | throw GCodeException(-1, -1, errMsg); |
| 167 | } |
| 168 | |
| 169 | [[noreturn]] void ThrowGCodeException(const char *_ecv_array errMsg, uint32_t param) THROWS(GCodeException) |
| 170 | { |
nothing calls this directly
no test coverage detected