| 146 | } |
| 147 | |
| 148 | IllegalPosition::IllegalPosition(const char* file, int line, const char* function, float x, float y, float z) noexcept : |
| 149 | BaseException(file, line, function, "IllegalPosition:", "(" + String(x) + "," + String(y) + "," + String(z) + ")") |
| 150 | { |
| 151 | GlobalExceptionHandler::getInstance().setMessage(what()); |
| 152 | } |
| 153 | |
| 154 | ParseError::ParseError(const char* file, int line, const char* function, const std::string& expression, const std::string& message) noexcept : |
| 155 | BaseException(file, line, function, "Parse Error", message + " in: " + expression) |
nothing calls this directly
no test coverage detected