| 111 | } |
| 112 | |
| 113 | IndexUnderflow::IndexUnderflow(const char* file, int line, const char* function, SignedSize index, Size size) noexcept : |
| 114 | BaseException(file, line, function, "IndexUnderflow", "the given index was too small: " + String(index) + " (size = " + String(size) + ")") |
| 115 | { |
| 116 | GlobalExceptionHandler::getInstance().setMessage(what()); |
| 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) + ")") |
nothing calls this directly
no test coverage detected