14 explicit ignore_error(
const std::string& message) : message_(message) {}
27 const char*
what() const noexcept {
return this->message_.c_str();}
ignore_error(const std::string &message)
Create a new instance of ignore_error class.
Definition: ignore_error.h:14
The tunit namespace contains a unit test library.
Definition: abort_error.h:8
const char * what() const noexcept
Returns a string that represents the current ignore_error.
Definition: ignore_error.h:27
Exception thow when ignore.
Definition: ignore_error.h:10
ignore_error(const char *message)
Create a new instance of ignore_error class.
Definition: ignore_error.h:18