| 48 | m_message += fmt::format(" Error: {}\n", errorMsg); |
| 49 | } |
| 50 | template <class... Args> void hint(Args&&... args) |
| 51 | { |
| 52 | const std::string hintMsg = fmt::format(std::forward<Args>(args)...); |
| 53 | m_message += fmt::format(" Hint: {}\n", hintMsg); |
| 54 | } |
| 55 | const char* what() const noexcept override; |
| 56 | Exception nest(const std::exception& exception) |
| 57 | { |
no test coverage detected