| 134 | } |
| 135 | |
| 136 | SizeUnderflow::SizeUnderflow(const char* file, int line, const char* function, Size size) noexcept : |
| 137 | BaseException(file, line, function, "SizeUnderflow", "the given size was too small: " + String(size)) |
| 138 | { |
| 139 | GlobalExceptionHandler::getInstance().setMessage(what()); |
| 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)) |
nothing calls this directly
no test coverage detected