| 19 | Exception::Exception(Error error) : _error(std::move(error)) {} |
| 20 | |
| 21 | const char* Exception::what() const noexcept { |
| 22 | return _error.getMessage().getCStr(); |
| 23 | } |
| 24 | |
| 25 | const StringBox& Exception::getMessage() const { |
| 26 | return _error.getMessage(); |
no test coverage detected