| 140 | } |
| 141 | |
| 142 | InvalidSize::InvalidSize(const char* file, int line, const char* function, Size size) noexcept : |
| 143 | BaseException(file, line, function, "InvalidSize", "the given size was not expected: " + String(size)) |
| 144 | { |
| 145 | GlobalExceptionHandler::getInstance().setMessage(what()); |
| 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) + ")") |
nothing calls this directly
no test coverage detected