18 lines
252 B
C++
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{};
|
|
}
|
|
|
|
}
|