psemek/libs/util/source/not_implemented.cpp

18 lines
252 B
C++

#include <psemek/util/not_implemented.hpp>
#include <stdexcept>
namespace psemek::util
{
char const * not_implemented_error::what() const noexcept
{
return "not implemented";
}
void not_implemented()
{
throw not_implemented_error{};
}
}