| 117 | } |
| 118 | |
| 119 | IndexOverflow::IndexOverflow(const char* file, int line, const char* function, SignedSize index, Size size) noexcept : |
| 120 | BaseException(file, line, function, "IndexOverflow", "the given index was too large: " + String(index) + " (size = " + String(size) + ")") |
| 121 | { |
| 122 | GlobalExceptionHandler::getInstance().setMessage(what()); |
| 123 | } |
| 124 | |
| 125 | FailedAPICall::FailedAPICall(const char* file, int line, const char* function, const std::string& message) noexcept : |
| 126 | BaseException(file, line, function, "FailedAPICall", message) |
nothing calls this directly
no test coverage detected