12345678910111213141516171819202122232425 |
- #include "TestException.hpp"
- #include <string>
- using ls::std::test::TestException;
- using std::string;
- using std::string_view;
- TestException::TestException(string_view _message) : message(_message)
- {}
- TestException::~TestException() noexcept = default;
- const char *TestException::what() const noexcept
- {
- return this->message.data();
- }
|